5 个不稳定版本
0.3.2 | 2023 年 2 月 3 日 |
---|---|
0.3.1 | 2023 年 1 月 2 日 |
0.3.0 | 2023 年 1 月 2 日 |
0.2.0 | 2023 年 1 月 1 日 |
0.1.5 |
|
1435 在 Rust 模式 中
每月 65 次下载
在 5 个 crate 中使用(通过 glifparser)
39KB
765 代码行
integer_or_float
v0.3.2
这是一个包含整数或浮点数的 Rust 类型。
// from src/backing_types.rs
#[cfg(not(feature = "x64-backing-store"))]
pub type f_iof = f32;
#[cfg(not(feature = "x64-backing-store"))]
pub type i_iof = i32;
/// A generic container for an "integer or a float".
pub enum IntegerOrFloat {
Integer(i_iof),
Float(f_iof)
}
最初,它只是 UFO 数据类型 integer or float
的 Rust 实现,该数据类型在 UFO 规范中到处都有,但最重要的是在字形组件使用的仿射矩阵中。
现在(v0.1.4)它是泛型的。您可以使用实验性功能 x64-backing-store
编译以获得定义为这样的 IntegerOrFloat
pub enum IntegerOrFloat {
Integer(i64),
Float(f64)
}
而不是默认的
pub enum IntegerOrFloat {
Integer(i32),
Float(f32)
}
可选功能
more-serde
启用与 serde/std
一起使用的 serde。
numerical-traits
启用 float-cmp
和 num-traits
crate,分别提供 ::ApproxEq
和 ::{cast::ToPrimitive, Zero, One, NumCast}
。
faster-strconv
启用 Ryū (龍),以实现更快的浮点数到字符串的转换。
默认
自 v0.2 版起,是 numerical-traits
的别名。这是从 v0.1 版的破坏性更改,serde 不再默认启用!
fat
自 v0.2 版起,启用所有功能。
许可证
Copyright 2022 Fredrick R. Brennan <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
依赖项
~0.4–1MB
~23K SLoC