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
TOptionalThe optional value to deconstruct.
value
TElementThe value potentially contained in
optional
.
Returns
Type Parameters
TOptional
The optional type to deconstruct.
TElement
The value encapsulated by the option type.