class Arbre::HTML::Collection

Stores a collection of Element objects

def &(other)

def &(other)
  self.class.new(super)
end

def +(other)

def +(other)
  self.class.new(super)
end

def -(other)

def -(other)
  self.class.new(super)
end

def to_html

def to_html
  self.collect do |element|
    element.to_html
  end.join.html_safe
end