Strips out Err wrapper from the type.
static assert(is(stripErr!Exception == Exception)); static assert(is(stripErr!string == string)); static assert(is(stripErr!(Err!string) == string));
See Implementation
Strips out Err wrapper from the type.