Method: Weby::HTML#next

Defined in:
lib/weby/html.rb

#nextObject



176
177
178
179
180
# File 'lib/weby/html.rb', line 176

def next
    if @node && (nxt = @node.next)
        self.class.new(nxt)
    end
end