module Dry::Initializer::Dispatchers

def call(**options)

Returns:
  • (Hash) - normalized set of options

Parameters:
  • options (Hash) --
def call(**options)
  options = {null:, **options}
  pipeline.reduce(options) { |opts, dispatcher| dispatcher.call(**opts) }
end