class NRSER::Types::Intersection
Intersection
combinator (`intersection`, `all_of`, `and`, `&).
Constants
- JOIN_SYMBOL
Public Instance Methods
test?(value)
click to toggle source
# File lib/nrser/types/combinators.rb, line 227 def test? value @types.all? { |type| type.test? value } end