blob: 676c2afb9a6924d9a80380af55969560e8be4dfd (
plain)
1
2
3
4
5
6
7
8
|
module Concurrent
# Various classes within allows for +nil+ values to be stored,
# so a special +NULL+ token is required to indicate the "nil-ness".
# @!visibility private
NULL = ::Object.new
end
|