Class: Async::List::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/async/list.rb

Overview

A linked list Node.

Instance Attribute Summary collapse

Instance Attribute Details

#headObject

Returns the value of attribute head.



178
179
180
# File 'lib/async/list.rb', line 178

def head
  @head
end

#tailObject

Returns the value of attribute tail.



179
180
181
# File 'lib/async/list.rb', line 179

def tail
  @tail
end