Method: Dry::Types::Intersection#call_unsafe

Defined in:
lib/dry/types/intersection.rb

#call_unsafe(input) ⇒ 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.



22
23
24
# File 'lib/dry/types/intersection.rb', line 22

def call_unsafe(input)
  merge_results(left.call_unsafe(input), right.call_unsafe(input))
end