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

A mutable bidirectional range. More...


Source file:
Inheritance diagram for Loyc.Collections.IMBRange< T >:
Loyc.Collections.IBRange< out T > Loyc.Collections.IMFRange< T > Loyc.Collections.IFRange< out T > Loyc.ICloneable< out T > Loyc.Collections.IHasLast< out T > Loyc.Collections.IFRange< out T > Loyc.Collections.IHasMFirst< T > Loyc.Collections.IHasFirst< out T > Loyc.Collections.IIsEmpty Loyc.Collections.IHasFirst< out T > Loyc.ICloneable< out T > Loyc.Collections.IIsEmpty Loyc.Collections.IIsEmpty Loyc.Collections.IHasFirst< out T > Loyc.ICloneable< out T > Loyc.Collections.IMRange< T > Loyc.Collections.ArraySlice< T >

Remarks

A mutable bidirectional range.

This range lets you change the value of IMFRange{T}.First and Last.

Please see IFRange{T} for general documentation about ranges.

Properties

new T Last [get, set]
 Gets or sets the value of the last item in the range. More...
 
- Properties inherited from Loyc.Collections.IHasFirst< out T >
First [get]
 Gets the first item in the deque. More...
 
- Properties inherited from Loyc.Collections.IIsEmpty
bool IsEmpty [get]
 
- Properties inherited from Loyc.Collections.IHasLast< out T >
Last [get]
 Gets the first item in the collection. More...
 
- Properties inherited from Loyc.Collections.IHasMFirst< T >
new T First [get, set]
 

Additional Inherited Members

- Public Member Functions inherited from Loyc.Collections.IBRange< out T >
PopLast (out bool fail)
 Removes the last item from the range and returns it. More...
 
- Public Member Functions inherited from Loyc.Collections.IFRange< out T >
PopFirst (out bool fail)
 Removes the first item from the range and returns it. More...
 
- Public Member Functions inherited from Loyc.ICloneable< out T >
Clone ()
 

Property Documentation

new T Loyc.Collections.IMBRange< T >.Last
getset

Gets or sets the value of the last item in the range.

Exceptions
EmptySequenceExceptionThe sequence is empty.