class Concurrent::ErlangActor::EnvironmentConstants::And

Combines matchers into one which matches if all match. @example

And[Numeric, -> v { v >= 0 }] === 1  # => true
And[Numeric, -> v { v >= 0 }] === -1 # => false