Skip to main content

Module error

Module error 

Source
Expand description

Typed error and Result alias for the framework’s fallible numerics.

This module defines the crate-wide Error enum and the Result<T> alias that all hand-written numerics return on bad input or domain violations (e.g. a negative scale parameter, an empty sample). It is the single place recoverable failures are modelled, so call sites never reach for unwrap.

Enums§

Error
A recoverable failure raised by the framework’s hand-written numerics.

Type Aliases§

Result
Result alias for the framework’s fallible numerics, defaulting the error to Error.