basic_dsp::VecResult [] [src]

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

Result contains on success the vector. On failure it contains an error reason and an vector with invalid data which still can be used in order to avoid memory allocation.