Sha256: 8e04c019a98e9b512a0f3f86753ae17527ef54826206dcbfb9ac347b6f4f22a6
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Dry module Types # Storage for meta-data # # @api public module Meta def initialize(*args, meta: EMPTY_HASH, **options) super(*args, **options) @meta = meta.freeze end # @param [Hash] new_options # # @return [Type] # # @api public def with(**options) super(meta: @meta, **options) end # @overload meta # @return [Hash] metadata associated with type # # @overload meta(data) # @param [Hash] new metadata to merge into existing metadata # @return [Type] new type with added metadata # # @api public def meta(data = Undefined) if Undefined.equal?(data) @meta elsif data.empty? self else with(meta: @meta.merge(data)) end end # Resets meta # # @return [Dry::Types::Type] # # @api public def pristine with(meta: EMPTY_HASH) end end end end
Version data entries
4 entries across 4 versions & 2 rubygems