当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia unsafe_trunc用法及代码示例


用法:

unsafe_trunc(T, x)

返回绝对值小于或等于 x 绝对值的 T 类型的最接近整数值。如果该值不能由 T 表示,则将返回任意值。另见 trunc

例子

julia> unsafe_trunc(Int, -2.2)
-2

julia> unsafe_trunc(Int, NaN)
-9223372036854775808

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.unsafe_trunc — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。