Enhanced C#
Language of your choice: library documentation
Public Member Functions | List of all members
Loyc.Collections.IListRangeMethods< in 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 in T >:
Loyc.Collections.IAddRange< 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< T >
void AddRange (IEnumerable< T > e)
 
void AddRange (IReadOnlyCollection< T > s)