Class: Dry::Schema::Macros::Optional Private

Inherits:
Key
  • Object
show all
Defined in:
lib/dry/schema/macros/optional.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 Key specialization used for keys that can be skipped

Instance Attribute Summary

Attributes inherited from Key

#filter_schema_dsl

Attributes inherited from DSL

#chain, #predicate_inferrer, #primitive_inferrer

Instance Method Summary collapse

Methods inherited from Key

#filter, #to_ast

Methods inherited from DSL

#array, #custom_type?, #each, #filled, #hash, #maybe, #schema, #type, #value

Methods inherited from Core

#new, #path, #to_ast

Instance Method Details

#operationObject

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.



11
12
13
# File 'lib/dry/schema/macros/optional.rb', line 11

def operation
  :then
end

#to_ruleObject

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.



16
17
18
# File 'lib/dry/schema/macros/optional.rb', line 16

def to_rule
  super unless trace.captures.empty?
end