Enhanced C#
Loyc library documentation
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
Public Member Functions | List of all members
Loyc.Collections.IListRangeMethods< in T > Interface Template Reference

The batch-operation methods of IListEx{T}, mainly for collection types that can add or remove multiple items in one method call. More...


Source file:
Inheritance diagram for Loyc.Collections.IListRangeMethods< in T >:
Loyc.Collections.IAddRange< in T > Loyc.Collections.ICount Loyc.Collections.AList< T > Loyc.Collections.DList< T > Loyc.Collections.IListEx< T > Loyc.Collections.Impl.InternalList< T > Loyc.Collections.ReversedList< T > Loyc.Collections.SparseAList< T > Loyc.Collections.IndexedAList< T > Loyc.Collections.AList< T > Loyc.Collections.DList< T > Loyc.Collections.IListExWithChangeEvents< T > Loyc.Collections.Impl.ListExBase< T > Loyc.Collections.ISparseListEx< T > Loyc.Collections.ReversedList< T > Loyc.Collections.SparseAList< T >

Remarks

The batch-operation methods of IListEx{T}, mainly for collection types that can add or remove multiple items in one method call.

Public Member Functions

void InsertRange (int index, IEnumerable< T > s)
 
void InsertRange (int index, IReadOnlyCollection< T > s)
 
void RemoveRange (int index, int amount)
 
- Public Member Functions inherited from Loyc.Collections.IAddRange< in T >
void AddRange (IEnumerable< T > e)
 
void AddRange (IReadOnlyCollection< T > s)
 

Additional Inherited Members

- Properties inherited from Loyc.Collections.ICount
int Count [get]
 Gets the number of items in the collection. More...