class Dry::Schema::ProcessorSteps

def merge(other)

Other tags:
    Api: - public

Returns:
  • (ProcessorSteps) -

Parameters:
  • other (ProcessorSteps) --
def merge(other)
  ProcessorSteps.new(
    before_steps: merge_callbacks(before_steps, other.before_steps),
    after_steps: merge_callbacks(after_steps, other.after_steps)
  )
end