class Concurrent::LockFreeStack::Node

Attributes

next_node[R]

@return [Node]

value[RW]

@return [Object]

Public Class Methods

new(value, next_node) click to toggle source
# File lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb, line 23
def initialize(value, next_node)
  @value     = value
  @next_node = next_node
end