assumeValid

Undocumented in source. Be warned that the author may not have intended to support it.
@nogc nothrow
assumeValid
(
ResultT
)
(
auto ref ResultT result
)

Examples

SimpleResult!int a = 69.result;
SimpleResult!int b = raise("yolo swag").result!int;

assert(a.assumeValid == 69);

// bool threw;
// try b.assumeValid();
// catch(Error e) threw = true;
// assert(threw);

Meta