Method: Hornetseye::Lut#descriptor

Defined in:
lib/multiarray/lut.rb

#descriptor(hash) ⇒ String

Get unique descriptor of this object

Parameters:

  • hash (Hash)

    Labels for any variables.

Returns:

  • (String)

    Descriptor of this object,



58
59
60
61
# File 'lib/multiarray/lut.rb', line 58

def descriptor( hash )
  "Lut(#{@sources.collect { |source| source.descriptor( hash ) }.join ','}," +
    "#{@table.descriptor( hash )})"
end