Table of Contents

Interface IConversionResult<T>

Namespace
The.Values
Assembly
Instagile.dll
public interface IConversionResult<out T>

Type Parameters

T

Properties

IsSuccess

bool IsSuccess { get; }

Property Value

bool

Type

ConversionResultType Type { get; }

Property Value

ConversionResultType

Value

T? Value { get; }

Property Value

T

Methods

Map<U>(Func<T, U>)

IConversionResult<U> Map<U>(Func<out T, U> f)

Parameters

f Func<T, U>

Returns

IConversionResult<U>

Type Parameters

U