module TypedOperation::Operations::PartialApplication

def curry

def curry
  Curried.new(self)
end

def with(...)

def with(...)
  PartiallyApplied.new(self, ...).with
end