Method: Lista#each

Defined in:
lib/prct08/lista.rb

#eachObject



153
154
155
156
157
158
159
# File 'lib/prct08/lista.rb', line 153

def each
aux = @head
    while aux != nil
        yield aux.value
        aux = aux.next
    end
end