class Concurrent::Edge::LockFreeStack::Node
Attributes
next_node[R]
value[R]
Public Class Methods
new(value, next_node)
click to toggle source
# File lib/concurrent/edge/lock_free_stack.rb, line 10 def initialize(value, next_node) @value = value @next_node = next_node end