lib/dry/core/container/item/callable.rb



# frozen_string_literal: true

module Dry
  module Core
    class Container
      class Item
        # Callable class to returns a item call
        #
        # @api public
        #
        class Callable < Item
          # Returns the result of item call or item
          #
          # @return [Mixed]
          def call
            callable? ? item.call : item
          end
        end
      end
    end
  end
end