文件名称:FixedPoint:用于定点数据类型的 Ruby 库
文件大小:13KB
文件格式:ZIP
更新时间:2024-08-02 12:51:01
Ruby
固定点 用于对定点有符号和无符号数据类型进行建模的 Ruby gem,具有用于很好地显示十六进制和二进制形式的方法。 安装 gem install fixed_point 用法 查看示例文件夹,但这里有一些: require 'fixed_point' #Create fixed point format, Signed, 12 integer bits, 4 fractional bits format = FixedPoint::Format.new(1, 12, 4) #Create fixed_point with value 1024.75 fix_num = FixedPoint::Number.new(1024.75, format ) puts fix_num.to_f # Float puts fix_num.to_h # Hexadecimal puts fix
【文件预览】:
FixedPoint-master
----fixed_point.gemspec(841B)
----.ruby-version(16B)
----lib()
--------fixed_point.rb(271B)
--------fixed_point()
----Gemfile(71B)
----.ruby-gemset(11B)
----spec()
--------fixed_point_negative_spec.rb(1KB)
--------fixed_point_spec.rb(10KB)
--------spec_helper.rb(105B)
--------fixed_point_hex_spec.rb(6KB)
----Rakefile(2KB)
----examples()
--------table_generation.rb(1KB)
----LICENSE(1KB)
----HISTORY.md(424B)
----README.md(2KB)