Interface INotifySplit<T>
- Namespace
- NMF.Expressions
- Assembly
- NMF.Expressions.Linq.dll
Denotes an incremental split
public interface INotifySplit<T>
Type Parameters
T
The element type
- Extension Methods
Properties
Empty
Indicates whether the split is empty
INotifyValue<bool> Empty { get; }
Property Value
Head
Gets the head of the split
INotifyValue<T> Head { get; }
Property Value
- INotifyValue<T>
Tail
Gets the tail of the split
INotifyValue<INotifySplit<T>> Tail { get; }