bsl::to_wstring

Convert a numeric value to a wstring.

Synopses

Declared in <bslstl_string.h>

Convert a numeric value to a wstring.

wstring
to_wstring(double value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(float value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(int value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(long value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(long double value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(long long value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(unsigned int value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(unsigned long value);
» more...

Convert a numeric value to a wstring.

wstring
to_wstring(unsigned long long value);
» more...

Return Value

wstring representation of value

Parameters

NameDescription
valuenumeric value to convert