class Ractor::LocalVariable

Constants

VERSION

Public Class Methods

new(delegate: false, &block) click to toggle source
# File lib/ractor/local_variable.rb, line 48
def self.new(delegate: false, &block)
  return Delegator.new(&block) if delegate

  super()
end