Method: Definition::Dsl#And

Defined in:
lib/definition/dsl.rb

#And(*definitions) ⇒ Object

Example: And(Types::Type(Float), Types::GreaterThan(10.0))



20
21
22
# File 'lib/definition/dsl.rb', line 20

def And(*definitions) # rubocop:disable Naming/MethodName
  Types::And.new(:and, *definitions)
end