[][src]Type Definition basic_dsp::TransRes

type TransRes<T> = Result<T, (ErrorReason, T)>;

Result for operations which transform a type (most commonly the type is a vector). On success the transformed type is returned. On failure it contains an error reason and the original type with with invalid data which still can be used in order to avoid memory allocation.