1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/benchmark/numeric_methods.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
449 B
YAML
Raw Normal View History

prelude: |
int = 42
flo = 4.2
benchmark:
real?: |
int.real?
integer?: |
flo.integer?
finite?: |
int.finite?
infinite?: |
int.infinite?
integer_real: |
int.real
float_real: |
flo.real
integr_imag: |
int.imag
float_imag: |
flo.imag
integer_conj: |
int.conj
float_conj: |
flo.conj
integer_numerator: |
int.numerator
integer_denominator: |
int.denominator
loop_count: 20000000