Class: Mongoid::Matchable::Gt

Inherits:
Default
  • Object
show all
Defined in:
build/mongoid-7.0/lib/mongoid/matchable/gt.rb

Overview

Performs Greater Than matching.

Since:

  • 4.0.0

Instance Attribute Summary

Attributes inherited from Default

#attribute, #document

Instance Method Summary collapse

Methods inherited from Default

#initialize

Constructor Details

This class inherits a constructor from Mongoid::Matchable::Default

Instance Method Details

#_matches?(value) ⇒ true, false

Return true if the attribute is greater than the value.

Examples:

Do the values match?

matcher._matches?({ :key => 10 })

Parameters:

  • value (Hash)

    The values to check.

Returns:

  • (true, false)

    If a value exists.

Since:

  • 4.0.0



16
17
18
19
20
# File 'build/mongoid-7.0/lib/mongoid/matchable/gt.rb', line 16

def _matches?(value)
  determine(value, :>)
rescue ArgumentError
  false
end