operator<<()
Contents
[
Hide
]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
| Parameter | Description |
|---|---|
| TKey | Key type. |
| TValue | Value type. |
Arguments
| Parameter | Type | Description |
|---|---|---|
| stream | std::ostream& | Output stream to insert data to. |
| pair | const 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
| Parameter | Description |
|---|---|
| TKey | Key type. |
| TValue | Value type. |
Arguments
| Parameter | Type | Description |
|---|---|---|
| stream | std::wostream& | Output stream to insert data to. |
| pair | const KeyValuePair<TKey, TValue>& | Data to insert. |
Return Value
stream.
See Also
- Class KeyValuePair
- Namespace System::Collections::Generic
- Library Aspose.Slides