integer_or_float 0.3.2

A data type holding an ‘integer or float’ (a data type in the Unified Font Object specification, among others)
Documentation
1
2
3
4
5
6
7
8
9
use super::IntegerOrFloat;
#[allow(unused_imports)]
use super::{f_iof, i_iof};

impl Default for IntegerOrFloat {
    fn default() -> Self {
        IntegerOrFloat::Float(f_iof::default())
    }
}