Why There Is No “get content by ID” Function

There is get_post_field(), which is very, very close to your proposed solution.

$content = get_post_field('post_content',$your_post_id);

Frankly, I think WordPress already suffers from helper function overload, but there you go.