module Kernel

Private Instance Methods

Share(*a, &b) click to toggle source
# File lib/shared.rb, line 116
def Share(*a, &b)
  if a.empty? and b.nil?
    ::Shared
  else
    Shared.share(*a, &b)
  end
end
Shared(*a, &b) click to toggle source
# File lib/shared.rb, line 124
def Shared(*a, &b)
  if a.empty? and b.nil?
    ::Shared
  else
    Shared.shared(*a, &b)
  end
end