module Daitai::Gt

Public Instance Methods

gt() click to toggle source
# File lib/daitai/functions/gt.rb, line 5
def gt
  lambda do |a, b|
    a > b
  end.curry
end