Module: Cassanity::Operators

Defined in:
lib/cassanity/operators/eq.rb,
lib/cassanity/operators/gt.rb,
lib/cassanity/operators/lt.rb,
lib/cassanity/operators/gte.rb,
lib/cassanity/operators/lte.rb

Defined Under Namespace

Classes: Eq, Gt, Gte, Lt, Lte

Class Method Summary collapse

Class Method Details

.Eq(*args) ⇒ Object



5
6
7
# File 'lib/cassanity/operators/eq.rb', line 5

def self.Eq(*args)
  Eq.new(*args)
end

.Gt(*args) ⇒ Object



5
6
7
# File 'lib/cassanity/operators/gt.rb', line 5

def self.Gt(*args)
  Gt.new(*args)
end

.Gte(*args) ⇒ Object



5
6
7
# File 'lib/cassanity/operators/gte.rb', line 5

def self.Gte(*args)
  Gte.new(*args)
end

.Lt(*args) ⇒ Object



5
6
7
# File 'lib/cassanity/operators/lt.rb', line 5

def self.Lt(*args)
  Lt.new(*args)
end

.Lte(*args) ⇒ Object



5
6
7
# File 'lib/cassanity/operators/lte.rb', line 5

def self.Lte(*args)
  Lte.new(*args)
end