Sha256: 6c1e1328ce5cf9688c396ce02a115a5232d102221790db67fe3e5ba31d1dd5b5

Contents?: true

Size: 866 Bytes

Versions: 5

Compression:

Stored size: 866 Bytes

Contents

# frozen_string_literal: true

module Dry
  module Types
    # Internal container for constructor functions used by the built-in types
    #
    # @api private
    class FnContainer
      # @api private
      def self.container
        @container ||= Container.new
      end

      # @api private
      def self.register(function = Dry::Core::Constants::Undefined, &block)
        fn = Dry::Core::Constants::Undefined.default(function, block)
        fn_name = register_name(fn)
        container.register(fn_name, fn) unless container.key?(fn_name)
        fn_name
      end

      # @api private
      def self.[](fn_name)
        if container.key?(fn_name)
          container[fn_name]
        else
          fn_name
        end
      end

      # @api private
      def self.register_name(function)
        "fn_#{function.object_id}"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dry-types-1.7.2 lib/dry/types/fn_container.rb
dry-types-1.7.1 lib/dry/types/fn_container.rb
dry-types-1.7.0 lib/dry/types/fn_container.rb
dry-types-1.6.1 lib/dry/types/fn_container.rb
dry-types-1.6.0 lib/dry/types/fn_container.rb