Static Public Member Functions | List of all members
internal::int_checker< true > Struct Template Reference

#include <printf.h>

Static Public Member Functions

template<typename T >
static bool fits_in_int (T value)
 
static bool fits_in_int (int)
 

Detailed Description

template<>
struct internal::int_checker< true >

Definition at line 156 of file printf.h.

Member Function Documentation

template<typename T >
static bool internal::int_checker< true >::fits_in_int ( value)
inlinestatic

Definition at line 158 of file printf.h.

158  {
159  return value >= std::numeric_limits<int>::min() &&
161  }
static int max(int a, int b)
T min(sqlite3 *const db, std::string const &table_name, std::string const &column_name)
Definition: statistics.h:55
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1225
static bool internal::int_checker< true >::fits_in_int ( int  )
inlinestatic

Definition at line 162 of file printf.h.

162 { return true; }

The documentation for this struct was generated from the following file: