Convert a numeric value to a string.

Synopses

Declared in <bslstl_string.h>

Convert a numeric value to a string.

string
to_string(double value);

Convert a numeric value to a string.

string
to_string(float value);

Convert a numeric value to a string.

string
to_string(int value);

Convert a numeric value to a string.

string
to_string(long value);

Convert a numeric value to a string.

string
to_string(long double value);

Convert a numeric value to a string.

string
to_string(long long value);

Convert a numeric value to a string.

string
to_string(unsigned int value);

Convert a numeric value to a string.

string
to_string(unsigned long value);

Convert a numeric value to a string.

string
to_string(unsigned long long value);

Return Value

string representation of value

Parameters

Name

Description

value

numeric value to convert

Created with MrDocs