blob: 38e01e6b9005f122ee73a85b5bbf2cb180ab51e3 (
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.freeze
end
|