Algebrick::Matchers::AbstractLogic
# File lib/algebrick/matchers/and.rb, line 18 def to_s matchers.join ' & ' end
# File lib/algebrick/matchers/and.rb, line 24 def matching?(other) matchers.all? { |m| m === other } end