class Concurrent::LockFreeStack
def pop
-
(Object)
-
def pop while true current_head = head return current_head.value if compare_and_set_head current_head, current_head.next_node end end
(Object)
-
def pop while true current_head = head return current_head.value if compare_and_set_head current_head, current_head.next_node end end