num_valid/backends/
native64.rs

1#![deny(rustdoc::broken_intra_doc_links)]
2
3//! Native 64-bit floating-point backend.
4//!
5//! This module provides implementations for standard 64-bit floating-point types:
6//! - `f64` for real numbers
7//! - `Complex<f64>` for complex numbers
8//!
9//! ## Submodules
10//!
11//! - `raw`: Raw trait implementations for `f64` and `Complex<f64>`
12//! - `validated`: Validated type aliases and kernel configurations
13
14/// Raw trait implementations for `f64` and `Complex<f64>`.
15pub mod raw;
16
17/// Validated type aliases and kernel configurations for native 64-bit types.
18pub mod validated;