operator<<()

System::Collections::Generic::operator«(std::ostream&, const KeyValuePair<TKey, TValue>&) function

Insert data into the stream using UTF-8 encoding.

template<typename TKey,typename TValue> std::ostream & System::Collections::Generic::operator<<(std::ostream &stream, const KeyValuePair<TKey, TValue> &pair)

Template parameters

ParameterDescription
TKeyKey type.
TValueValue type.

Arguments

ParameterTypeDescription
streamstd::ostream&Output stream to insert data to.
pairconst KeyValuePair<TKey, TValue>&Data to insert.

Return Value

stream.

System::Collections::Generic::operator«(std::wostream&, const KeyValuePair<TKey, TValue>&) function

Insert data into the stream.

template<typename TKey,typename TValue> std::wostream & System::Collections::Generic::operator<<(std::wostream &stream, const KeyValuePair<TKey, TValue> &pair)

Template parameters

ParameterDescription
TKeyKey type.
TValueValue type.

Arguments

ParameterTypeDescription
streamstd::wostream&Output stream to insert data to.
pairconst KeyValuePair<TKey, TValue>&Data to insert.

Return Value

stream.

See Also