Table of Contents

Delegate OptionDeconstructor<TOptional, TElement>

Namespace
PolyType.Abstractions
Assembly
PolyType.dll

Delegate deconstructing an optional type.

public delegate bool OptionDeconstructor<TOptional, TElement>(TOptional? optional, out TElement value)

Parameters

optional TOptional

The optional value to deconstruct.

value TElement

The value potentially contained in optional.

Returns

bool

true if the optional contains a value, or false if it does not.

Type Parameters

TOptional

The optional type to deconstruct.

TElement

The value encapsulated by the option type.