Class: Mongoid::Matchers::Lt
- Defined in:
- lib/mongoid/matchers/lt.rb
Overview
Performs less than matching.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#matches?(value) ⇒ true, false
Return true if the attribute is less than the value.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchers::Default
Instance Method Details
#matches?(value) ⇒ true, false
Return true if the attribute is less than the value.
16 17 18 |
# File 'lib/mongoid/matchers/lt.rb', line 16 def matches?(value) determine(value, :<) end |