文件名称:ish:用于生成接近数字 ex 的随机数的 Ruby 助手
文件大小:7KB
文件格式:ZIP
更新时间:2024-07-16 18:25:00
Ruby
是的 当需要随机的“模糊”数字/时间结果时,Ish 是一颗Ruby。 一些快速示例: # integers always return integers 100 . ish # => 99 100 . ish # => 104 # the default precision is 0.05, meaning the plus/minus range (offset) # is 5% of the input number (so default offset of 100 is 5) # can override either via params 100 . ish ( precision : 0.5 ) # => 135 (50-150 range) 100 . ish ( offset : 90 ) # => 17 (10-190 range) # float
【文件预览】:
ish-master
----ish.gemspec(576B)
----MIT-LICENSE(1KB)
----lib()
--------ish()
--------ish.rb(2KB)
----Gemfile(91B)
----Rakefile(203B)
----.travis.yml(39B)
----test()
--------test_helper.rb(1KB)
--------ish_test.rb(2KB)
----README.md(2KB)
----.gitignore(12B)
----CHANGELOG(28B)