|
Joutsen v0.5.0+12-g5dd5f7e
|
An interface describing classes that behave like a collection of items that can be modified. More...
Public Member Functions | |
| bool | Contains (ItemType item, SCG.IEqualityComparer< ItemType > comparer) |
| Checks if an item is part of the collection. More... | |
| void | Add (SCG.IEnumerable< ItemType > items) |
| Adds multiple items to the collection. More... | |
An interface describing classes that behave like a collection of items that can be modified.
| void Joutsen.Collections.Generic.Collection< ItemType >.Add | ( | SCG.IEnumerable< ItemType > | items | ) |
Adds multiple items to the collection.
| items | the items to add |
Implemented in Joutsen.Collections.Generic.Compatibility.CollectionAdapter< ItemType >, Joutsen.Collections.Generic.HashSet< ItemType >, Joutsen.Collections.Generic.SortedSet< ItemType >, and Joutsen.Collections.Generic.RingBuffer< ItemType >.
| bool Joutsen.Collections.Generic.Collection< ItemType >.Contains | ( | ItemType | item, |
| SCG.IEqualityComparer< ItemType > | comparer | ||
| ) |
Checks if an item is part of the collection.
| item | the item to check |
| comparer | the instance used to compare the item to the items in the list |
Implemented in Joutsen.Collections.Generic.Compatibility.CollectionAdapter< ItemType >, Joutsen.Collections.Generic.ArrayList< ItemType >, and Joutsen.Collections.Generic.DoublyLinkedList< ItemType >.