Lines Matching refs:Numeric
100 template <typename Numeric,
101 bool IsInteger = std::numeric_limits<Numeric>::is_integer,
102 bool IsFloat = std::numeric_limits<Numeric>::is_iec559>
105 template <typename Numeric>
106 struct UnsignedOrFloatForSize<Numeric, true, false> {
107 typedef typename UnsignedIntegerForSize<Numeric>::type type;
110 template <typename Numeric>
111 struct UnsignedOrFloatForSize<Numeric, false, true> {
112 typedef Numeric type;
411 "Argument must be numeric.");