Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/ruzzy.rb
Overview
Hook Integer operations for tracing in SantizerCoverage
Instance Method Summary collapse
- #/(other) ⇒ Object
- #<(other) ⇒ Object
- #<=(other) ⇒ Object
- #<=>(other) ⇒ Object
- #==(other) ⇒ Object
- #===(other) ⇒ Object
- #>(other) ⇒ Object
- #>=(other) ⇒ Object
- #div(other) ⇒ Object
- #divmod(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #ruzzy_div ⇒ Object
- #ruzzy_divmod ⇒ Object
- #ruzzy_divo ⇒ Object
- #ruzzy_eeeql ⇒ Object
- #ruzzy_eeql ⇒ Object
- #ruzzy_eql? ⇒ Object
- #ruzzy_ge ⇒ Object
- #ruzzy_gt ⇒ Object
- #ruzzy_le ⇒ Object
- #ruzzy_lt ⇒ Object
- #ruzzy_spc ⇒ Object
Instance Method Details
#/(other) ⇒ Object
111 112 113 114 |
# File 'lib/ruzzy.rb', line 111 def /(other) Ruzzy.c_trace_div8(other) ruzzy_divo(other) end |
#<(other) ⇒ Object
91 92 93 94 |
# File 'lib/ruzzy.rb', line 91 def <(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_lt(other) end |
#<=(other) ⇒ Object
96 97 98 99 |
# File 'lib/ruzzy.rb', line 96 def <=(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_le(other) end |
#<=>(other) ⇒ Object
86 87 88 89 |
# File 'lib/ruzzy.rb', line 86 def <=>(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_spc(other) end |
#==(other) ⇒ Object
71 72 73 74 |
# File 'lib/ruzzy.rb', line 71 def ==(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_eeql(other) end |
#===(other) ⇒ Object
76 77 78 79 |
# File 'lib/ruzzy.rb', line 76 def ===(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_eeeql(other) end |
#>(other) ⇒ Object
101 102 103 104 |
# File 'lib/ruzzy.rb', line 101 def >(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_gt(other) end |
#>=(other) ⇒ Object
106 107 108 109 |
# File 'lib/ruzzy.rb', line 106 def >=(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_ge(other) end |
#div(other) ⇒ Object
116 117 118 119 |
# File 'lib/ruzzy.rb', line 116 def div(other) Ruzzy.c_trace_div8(other) ruzzy_div(other) end |
#divmod(other) ⇒ Object
121 122 123 124 |
# File 'lib/ruzzy.rb', line 121 def divmod(other) Ruzzy.c_trace_div8(other) ruzzy_divmod(other) end |
#eql?(other) ⇒ Boolean
81 82 83 84 |
# File 'lib/ruzzy.rb', line 81 def eql?(other) Ruzzy.c_trace_cmp8(self, other) ruzzy_eql?(other) end |
#ruzzy_div ⇒ Object
68 |
# File 'lib/ruzzy.rb', line 68 alias ruzzy_div div |
#ruzzy_divmod ⇒ Object
69 |
# File 'lib/ruzzy.rb', line 69 alias ruzzy_divmod divmod |
#ruzzy_divo ⇒ Object
67 |
# File 'lib/ruzzy.rb', line 67 alias ruzzy_divo / |
#ruzzy_eeeql ⇒ Object
60 |
# File 'lib/ruzzy.rb', line 60 alias ruzzy_eeeql === |
#ruzzy_eeql ⇒ Object
59 |
# File 'lib/ruzzy.rb', line 59 alias ruzzy_eeql == |
#ruzzy_eql? ⇒ Object
61 |
# File 'lib/ruzzy.rb', line 61 alias ruzzy_eql? eql? |
#ruzzy_ge ⇒ Object
66 |
# File 'lib/ruzzy.rb', line 66 alias ruzzy_ge >= |
#ruzzy_gt ⇒ Object
65 |
# File 'lib/ruzzy.rb', line 65 alias ruzzy_gt > |
#ruzzy_le ⇒ Object
64 |
# File 'lib/ruzzy.rb', line 64 alias ruzzy_le <= |
#ruzzy_lt ⇒ Object
63 |
# File 'lib/ruzzy.rb', line 63 alias ruzzy_lt < |
#ruzzy_spc ⇒ Object
62 |
# File 'lib/ruzzy.rb', line 62 alias ruzzy_spc <=> |