Module: Concurrent::ThreadSafe::Util

Defined in:
lib/concurrent/thread_safe/util.rb,
lib/concurrent/thread_safe/util/adder.rb,
lib/concurrent/thread_safe/util/volatile.rb,
lib/concurrent/thread_safe/util/striped64.rb,
lib/concurrent/thread_safe/util/array_hash_rbx.rb,
lib/concurrent/thread_safe/util/cheap_lockable.rb,
lib/concurrent/thread_safe/util/xor_shift_random.rb,
lib/concurrent/thread_safe/util/power_of_two_tuple.rb

Defined Under Namespace

Modules: XorShiftRandom

Constant Summary collapse

FIXNUM_BIT_SIZE =
(0.size * 8) - 2
MAX_INT =
(2 ** FIXNUM_BIT_SIZE) - 1
CPU_COUNT =

is there a way to determine this?

16