module Daitai::Max

Public Instance Methods

max() click to toggle source
# File lib/daitai/functions/max.rb, line 5
def max
  ->(a, b) { a > b ? a : b }.curry
end