vote up 0 vote down star

Hi,

In a template function, I like to determine the range for the value of its template type. For specific type, like int, INT_MAX and INT_MIN are what I want. But how to do the same for a template type?

Thanks and regards!

flag

That depends on what the type looks like. Some more details would be useful. What kind of template types are you thinking of? – jalf Sep 22 at 15:35

3 Answers

vote up 1 vote down check

For numeric types, you can use the std::numeric_limits class template in the <limits> header.

link|flag
vote up 0 vote down

See the <limits> header and std::numeric_limits

link|flag
vote up 0 vote down

This is done with type traits like those from boost

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.