Skip to main content

oxilean_codegen/opt_gvn/
fixpointstate_traits.rs

1//! # FixpointState - Trait Implementations
2//!
3//! This module contains trait implementations for `FixpointState`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12
13use super::types::FixpointState;
14
15impl Default for FixpointState {
16    fn default() -> Self {
17        FixpointState::new()
18    }
19}