module Atacama::Values::Methods

Helper methods for emitting value objects inside of a Contract.

Public Instance Methods

Option(value) click to toggle source

This value tells the orchestrator to merge in these parameters on the next call. @param [Hash] the hash object to merge

# File lib/atacama/values.rb, line 14
def Option(value)
  Values::Option.call(value: value)
end
Return(value) click to toggle source
# File lib/atacama/values.rb, line 18
def Return(value)
  Values::Return.call(value: value)
end