Sha256: 61b972aba593e24b9b1288bb19fd6c0fc603b57340466eaa95c3ee2187272b20

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

#encoding: utf-8

require 'y_support'

# Object, whose business is to stay local to methods. Optional signature
# provides additional level of safety in ensuring object locality. (Signature
# accessor is :signature, aliased as :σ, small Greek sigma.)
# 
class LocalObject
  attr_reader :signature
  alias σ signature

  # Optional argument signature provides additional level of safety in
  # ascertaining that the object indeed is of local origin.
  # 
  def initialize signature=caller_locations( 1, 1 )[0].label
    @signature = signature
  end

  # True if the (optional) signature matches.
  # 
  def local_object? signature=caller_locations( 1, 1 )[0].label
    signature == self.signature
  end
  alias ℓ? local_object?
end

# Object class is patched with #LocalObject (alias L!) constructor, and
# #local_object?, alias #ℓ? inquirer.
# 
class Object
  # LocalObject constructor.
  # 
  def LocalObject signature=caller_locations( 1, 1 )[0].label
    LocalObject.new signature
  end
  alias L! LocalObject

  # False for normal objects, overriden in the LocalObject class.
  # 
  def local_object? signature=nil; false end
  alias ℓ? local_object?
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
y_support-2.0.2 lib/y_support/local_object.rb
y_support-2.0.1 lib/y_support/local_object.rb
y_support-2.0.0 lib/y_support/local_object.rb