strafe_type/float/constraint/
f64.rs

1use crate::float::constraint::float_constraint::FloatConstraint;
2
3impl FloatConstraint for f64 {
4    #[inline]
5    fn get_f64(&self) -> f64 {
6        *self
7    }
8
9    #[inline]
10    fn constraint(&self) -> bool {
11        true
12    }
13}