Struct WithIndex<TEvent>
- Namespace
- LfrlAnvil.Reactive.Composites
- Assembly
- LfrlAnvil.Reactive.Core.dll
Represents an event with an index.
public readonly struct WithIndex<TEvent>
Type Parameters
TEvent
Event type.
- Inherited Members
Constructors
WithIndex(TEvent, int)
Creates a new WithIndex<TEvent> instance.
public WithIndex(TEvent @event, int index)
Parameters
event
TEventUnderlying event.
index
intAttached index.
Properties
Event
Underlying event.
public TEvent Event { get; }
Property Value
- TEvent
Index
Attached index.
public int Index { get; }
Property Value
Methods
ToString()
Returns a string representation of this WithIndex<TEvent> instance.
[Pure]
public override string ToString()
Returns
- string
String representation.