Ok<T, E> class
A type that represents the successful Result of something.
Pattern matching is recommended for interacting with Result types.
Result<int, String> foo = Ok(42);
if (foo case Ok(value: var bar)) {
print('Ok value: $bar');
}
- Inheritance
- Available extensions
Constructors
- Ok(T value)
-
const
Properties
Methods
-
and<
U> (Result< U, E> other) → Result<U, E> -
Returns a
Resultvalue as Err<U, E> if thisResultis Err<T, E>, otherwise returnsother.inherited -
andThen<
U> (Result< U, E> fn(T)) → Result<U, E> -
Returns a
Resultvalue as Err<U, E> if thisResultis Err<T, E>, otherwise callsfnwith the held Ok value and returns the returnedResult.inherited -
call(
) → T -
Shortcut to call Result.unwrap().
inherited
-
err(
) → Option< E> -
Converts this
Result<T, E>into an Option<E>, discarding the held value if this is Ok.inherited -
expect(
String message) → T -
Returns the held value of this
Resultif it is Ok. Throws a ResultError with the givenmessageand held Err value if thisResultis Err.inherited -
expectErr(
String message) → E -
Returns the held value of this
Resultif it is Err. Throws a ResultError with the givenmessageand held Ok value if thisResultis Ok.inherited -
flatten(
) → Result< T, E> -
Available on Result<
Flattens a nestedResult< , provided by the ResultFlatten extensionT, E> , E>Resulttype value one level. -
inspect(
void fn(T)) → Result< T, E> -
Calls the provided function with the contained value if this
Resultis Ok.inherited -
inspectErr(
void fn(E)) → Result< T, E> -
Calls the provided function with the contained error value if this
Resultis Err.inherited -
isErr(
) → bool -
Returns whether or not this
Resultis Err.inherited -
isErrAnd(
bool predicate(E)) → bool -
Returns whether or not this
Resultis Err and that the held error value matches the given predicate.inherited -
isOk(
) → bool -
Returns whether or not this
Resultis Ok.inherited -
isOkAnd(
bool predicate(T)) → bool -
Returns whether or not this
Resultis Ok and that the held value matches the given predicate.inherited -
iter(
) → Iterable< T> -
Returns an Iterable of the held value.
inherited
-
map<
U> (U mapFn(T)) → Result< U, E> -
Maps a
Result<T, E>to aResult<U, E>using the given function with the held value.inherited -
mapErr<
F> (F mapFn(E)) → Result< T, F> -
Maps a
Result<T, E>to aResult<T, F>using the given function with the held value.inherited -
mapOr<
U> (U orValue, U mapFn(T)) → Result< U, E> -
Maps a
Result<T, E>to aResult<U, E>using the given function with the held value if theResult<T, E>is Ok. Otherwise returns the providedorValueasOk(orValue).inherited -
mapOrElse<
U> (U orFn(), U mapFn(T)) → Result< U, E> -
Maps a
Result<T, E>to aResult<U, E>using the givenmapFnfunction with the held value if theResultis Ok. Otherwise returns the result oforFnasOk(orFn()).inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
ok(
) → Option< T> -
Converts this
Result<T, E>into an Option<T>, discarding the held error value if this is Err.inherited -
or<
F> (Result< T, F> other) → Result<T, F> -
Returns a
Resultvalue as Ok<T, F> if thisResultis Ok<T, E>, otherwise returnsother.inherited -
orElse<
F> (Result< T, F> fn(E)) → Result<T, F> -
Returns a
Resultvalue as Ok<T, F> if thisResultis Ok<T, E>, otherwise callsfnwith the held Err value and returns the returnedResult.inherited -
toString(
) → String -
A string representation of this object.
inherited
-
transpose(
) → Option< Result< T, E> > -
Available on Result<
Transposes thisOption< , provided by the ResultTranspose extensionT> , E>Result<Option<T>, E>into an Option<Result<T, E>>. -
unwrap(
) → T -
Returns the held value of this
Resultif it is Ok.inherited -
unwrapErr(
) → E -
Returns the held value of this
Resultif it is Err.inherited -
unwrapOr(
T orValue) → T -
Returns the held value of this
Resultif it is Ok, or the given value if thisResultis Err.inherited -
unwrapOrElse(
T elseFn()) → T -
Returns the held value of this
Resultif it is Ok, or returns the returned value fromelseFnif thisResultis Err.inherited
Operators
-
operator ==(
Object other) → bool -
Compare equality between two
Resultvalues.inherited