Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

to_static_string
PrevUpHomeNext

Converts value to a static_string

static_string< std::numeric_limits< int >::digits10+2 >
to_static_string(
    int value) noexcept;
  » more...

static_string< std::numeric_limits< long >::digits10+2 >
to_static_string(
    long value) noexcept;
  » more...

static_string< std::numeric_limits< long long >::digits10+2 >
to_static_string(
    long long value) noexcept;
  » more...

static_string< std::numeric_limits< unsigned int >::digits10+1 >
to_static_string(
    unsigned int value) noexcept;
  » more...

static_string< std::numeric_limits< unsigned long >::digits10+1 >
to_static_string(
    unsigned long value) noexcept;
  » more...

static_string< std::numeric_limits< unsigned long long >::digits10+1 >
to_static_string(
    unsigned long long value) noexcept;
  » more...

static_string< std::numeric_limits< float >::max_digits10+8 >
to_static_string(
    float value) noexcept;
  » more...

static_string< std::numeric_limits< double >::max_digits10+8 >
to_static_string(
    double value) noexcept;
  » more...

static_string< std::numeric_limits< long double >::max_digits10+10 >
to_static_string(
    long double value) noexcept;
  » more...

PrevUpHomeNext