Internal collection operators definition.
Public Operators | |
virtual collection_t & | operator<< (const type_t &item) |
The shift left operator adds an item to the xtd::collections::generic::icollection <type_t>. | |
virtual collection_t & | operator>> (const type_t &item) |
The shift right operator removes tthe first occurrence of a specific object from the xtd::collections::generic::icollection <type_t>. | |
|
inlinevirtual |
The shift left operator adds an item to the xtd::collections::generic::icollection <type_t>.
item | The object to add to the xtd::collections::generic::icollection <type_t>. |
xtd::not_supported_exception | The xtd::collections::generic::icollection <type_t> is read-only. |
|
inlinevirtual |
The shift right operator removes tthe first occurrence of a specific object from the xtd::collections::generic::icollection <type_t>.
item | The object to remove from the xtd::collections::generic::icollection <type_t>. |
xtd::not_supported_exception | The xtd::collections::generic::icollection <type_t> is read-only. |