Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

to_static_wstring

Converts value to a static_wstring

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

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

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

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

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

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

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

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

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

PrevUpHomeNext