Table of Contents

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 TEvent

Underlying event.

index int

Attached index.

Properties

Event

Underlying event.

public TEvent Event { get; }

Property Value

TEvent

Index

Attached index.

public int Index { get; }

Property Value

int

Methods

ToString()

Returns a string representation of this WithIndex<TEvent> instance.

[Pure]
public override string ToString()

Returns

string

String representation.