Class: Containers::RubyDeque::Node

Inherits:
Struct
  • Object
show all
Defined in:
lib/containers/deque.rb

Instance Attribute Summary collapse

Instance Attribute Details

#leftObject

Returns the value of attribute left



10
11
12
# File 'lib/containers/deque.rb', line 10

def left
  @left
end

#objObject

Returns the value of attribute obj



10
11
12
# File 'lib/containers/deque.rb', line 10

def obj
  @obj
end

#rightObject

Returns the value of attribute right



10
11
12
# File 'lib/containers/deque.rb', line 10

def right
  @right
end