2 summary::keeping objects in a central place
3 related::Classes/Archive, Classes/LibraryBase
4 categories:: Collections
7 Library is a global MultiLevelIdentityDictionary.
8 The Library can be used as a place to store data that you want globally accesible. It is an alternative to using class variables. It is a nice place to store menus, annotations, and commonly reusable functions.
15 Post a formatted description of the entire library.
21 The last argument to put is the object being inserted:
23 Library.put(\multi, \level, \addressing, \system, "i'm the thing you are putting in here");
24 Library.at(\multi, \level, \addressing, \system).postln;
25 Library.atList([\multi, \level, \addressing, \system]).postln;