Class: Dry::Schema::Key::Array Private

Inherits:
Dry::Schema::Key show all
Defined in:
lib/dry/schema/key.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

A specialized key type which handles nested arrays

Constant Summary

Constants inherited from Dry::Schema::Key

DEFAULT_COERCER

Instance Attribute Summary collapse

Attributes inherited from Dry::Schema::Key

#coercer, #id, #name

Instance Method Summary collapse

Methods inherited from Dry::Schema::Key

[], new, #new, #read

Constructor Details

#initialize(id, member:, **opts) ⇒ Array

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Array.



140
141
142
143
# File 'lib/dry/schema/key.rb', line 140

def initialize(id, member:, **opts)
  super(id, **opts)
  @member = member
end

Instance Attribute Details

#memberObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



137
138
139
# File 'lib/dry/schema/key.rb', line 137

def member
  @member
end

Instance Method Details

#coercible(&coercer) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



153
154
155
# File 'lib/dry/schema/key.rb', line 153

def coercible(&coercer)
  new(coercer: coercer, member: member.coercible(&coercer))
end

#dumpObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



163
164
165
# File 'lib/dry/schema/key.rb', line 163

def dump
  [name, member.dump]
end

#stringifiedObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



158
159
160
# File 'lib/dry/schema/key.rb', line 158

def stringified
  new(name: name.to_s, member: member.stringified)
end

#write(source, target) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



146
147
148
149
150
# File 'lib/dry/schema/key.rb', line 146

def write(source, target)
  read(source) { |value|
    target[coerced_name] = value.is_a?(::Array) ? value.map { |el| member.write(el) } : value
  }
end