Interface INotifySplit<T>
Denotes an incremental split
Namespace: NMF.Expressions
Assembly: NMF.Expressions.Linq.dll
Syntax
public interface INotifySplit<T>
Type Parameters
Name | Description |
---|---|
T | The element type |
Properties
| Edit this page View SourceEmpty
Indicates whether the split is empty
Declaration
INotifyValue<bool> Empty { get; }
Property Value
Type | Description |
---|---|
INotifyValue<bool> |
Head
Gets the head of the split
Declaration
INotifyValue<T> Head { get; }
Property Value
Type | Description |
---|---|
INotifyValue<T> |
Tail
Gets the tail of the split
Declaration
INotifyValue<INotifySplit<T>> Tail { get; }
Property Value
Type | Description |
---|---|
INotifyValue<INotifySplit<T>> |