Class: Node

Inherits:
Struct
  • Object
show all
Defined in:
lib/practica6/lista.rb

Instance Attribute Summary collapse

Instance Attribute Details

#nextObject

Returns the value of attribute next



1
2
3
# File 'lib/practica6/lista.rb', line 1

def next
  @next
end

#prevObject

Returns the value of attribute prev



1
2
3
# File 'lib/practica6/lista.rb', line 1

def prev
  @prev
end

#valueObject

Returns the value of attribute value



1
2
3
# File 'lib/practica6/lista.rb', line 1

def value
  @value
end