#type #ufo #glif #no-std #hold #font-format

no-std 整数__浮点数

一种包含“整数或浮点数”的数据类型(统一字体对象规范中的数据类型之一)

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 2022 年 12 月 13 日

1435Rust 模式

Download history 45/week @ 2024-03-11 25/week @ 2024-03-18 16/week @ 2024-03-25 42/week @ 2024-04-01 5/week @ 2024-04-08 15/week @ 2024-04-15 17/week @ 2024-04-22 1/week @ 2024-04-29 7/week @ 2024-05-06 2/week @ 2024-05-13 24/week @ 2024-05-20 11/week @ 2024-05-27 11/week @ 2024-06-03 14/week @ 2024-06-10 22/week @ 2024-06-17 16/week @ 2024-06-24

每月 65 次下载
5 个 crate 中使用(通过 glifparser

Apache-2.0

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-cmpnum-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