2 summary::Abstract global storage class
3 categories:: Collections
6 Base class for link::Classes/Library:: and link::Classes/Archive::
8 There is only one global instance: Archive.global, or Library.global, which is initialized automatically in the subclasses.
13 Subclass responsibility
19 Access the dictionary at a path with keys. The keys may be any object, but are usually link::Classes/Symbol::s.
22 Store an object in the dictionary at a path, given as a list of keys and the object to be stored as last argument. The keys may be any object, but are usually link::Classes/Symbol::s.
25 Access the dictionary at a path, given as a list of keys. The keys may be any object, but are usually link::Classes/Symbol::s.
28 Store an object in the dictionary at a path, given as a list of keys and the object to be stored as last argument. The keys may be any object, but are usually link::Classes/Symbol::s.
33 // an example from the subclass Library:
35 Library.put(\multi, \level, \addressing, \system, "i'm the thing you are putting in here");
36 Library.at(\multi, \level, \addressing, \system).postln;
37 Library.atList([\multi, \level, \addressing, \system]).postln;