class Linker

The Linker class is the Hitsuji representation of an array, and its properties include a name and a value. The value is an array with read-write properties, but once the Linker is bound, a seperate method must be used to read and change it. Linkers are the main interface between Items and Operations. Examples of its use can be seen in the documentation for the Hitsuji.linker method.

Attributes

name[RW]
value[RW]

Public Class Methods

new(name, value) click to toggle source
# File lib/subsystem.rb, line 23
def initialize(name, value)
  @name = name
  @value = value
end