class Concurrent::ThreadLocalVar

def value

Returns:
  • (Object) - the current value
def value
  LOCALS.fetch(@index) { default }
end