class Dry::Schema::KeyMap

def write(source, target = EMPTY_HASH.dup)

Other tags:
    Api: - public

Returns:
  • (Hash) -

Parameters:
  • target (Hash) -- The target hash
  • source (Hash) -- The source hash
def write(source, target = EMPTY_HASH.dup)
  each { |key| key.write(source, target) }
  target
end