Class: Flo
Class Method Summary collapse
- .<(x) ⇒ Rtype::Behavior::FloatCheck
- .<=(x) ⇒ Rtype::Behavior::FloatCheck
- .==(x) ⇒ Rtype::Behavior::FloatCheck
- .>(x) ⇒ Rtype::Behavior::FloatCheck
- .>=(x) ⇒ Rtype::Behavior::FloatCheck
Class Method Details
.<(x) ⇒ Rtype::Behavior::FloatCheck
155 156 157 |
# File 'lib/rtype/behavior/core_ext.rb', line 155 def self.<(x) ::Rtype::Behavior::FloatCheck.new(:<, x) end |
.<=(x) ⇒ Rtype::Behavior::FloatCheck
163 164 165 |
# File 'lib/rtype/behavior/core_ext.rb', line 163 def self.<=(x) ::Rtype::Behavior::FloatCheck.new(:<=, x) end |
.==(x) ⇒ Rtype::Behavior::FloatCheck
171 172 173 |
# File 'lib/rtype/behavior/core_ext.rb', line 171 def self.==(x) ::Rtype::Behavior::FloatCheck.new(:==, x) end |
.>(x) ⇒ Rtype::Behavior::FloatCheck
139 140 141 |
# File 'lib/rtype/behavior/core_ext.rb', line 139 def self.>(x) ::Rtype::Behavior::FloatCheck.new(:>, x) end |
.>=(x) ⇒ Rtype::Behavior::FloatCheck
147 148 149 |
# File 'lib/rtype/behavior/core_ext.rb', line 147 def self.>=(x) ::Rtype::Behavior::FloatCheck.new(:>=, x) end |