/usr/share/SuperCollider/HelpSource/Classes/Dictionary.schelp is in supercollider-common 1:3.8.0~repack-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | CLASS::Dictionary
summary::associative collection mapping keys to values
related::Classes/Environment, Classes/Event
categories::Collections>Unordered
DESCRIPTION::
A Dictionary is an associative collection mapping keys to values.
Two keys match if they are strong::equal::. (i.e. == returns true.)
The contents of a Dictionary are strong::unordered::. You must not depend on the order of items in a Dictionary.
You must only rely on equality for the keys (e.g. symbols are ok, strings not). For identity matching see: link::Classes/IdentityDictionary::.
CLASSMETHODS::
method::new
Creates a Dictionary with an initial capacity for strong::n:: key value mappings.
method::newFrom
Creates a new Dictionary from another collection.
code::
d= Dictionary.newFrom(List[\a, 1, \b, 2, \c, 4]);
::
argument::aCollection
any Object that responds to keysValuesDo (usually a List or an Array).
discussion::
A new Dictionary can also be created from an array of link::Classes/Association::s:
code::
Dictionary.with(*[\a->1,\b->2,\c->3])
::
INSTANCEMETHODS::
subsection::Adding and Removing
method::add
Add strong::anAssociation:: to the Dictionary. If the key value pair already exists in the Dictionary, the key's value will be replaced.
code::
(
d = Dictionary.new;
d.add(\monkey -> 0).postln;
d.add(\robot -> 1).postln; // Add robot as a key with a value of 1
d.add(\monkey -> 2).postln; // Replaces the value for the key monkey with 2
)
::
method::put
Associate two objects and add them to the Dictionary.
code::
d = Dictionary.new;
d.put("abc", 10);
// using an event:
d = ();
d.put("abc", 10);
::
argument::key
key to associate with object. This can be any objects, but is often a link::Classes/Symbol::.
argument::value
an object
method::removeAt
Remove the key and the value associated with it from the Dictionary.
code::
d = (monkey: 99);
d.removeAt(\monkey);
::
method::putAll
Add all items of each argument to the dictionary.
code::
d = ();
d.putAll(Dictionary[\hello -> 9, \whello -> "world"], Dictionary["abd" -> 6]);
::
argument:: ... dictionaries
any Object that responds to keysValuesDo (usually a Dictionary).
method::putPairs
Add all items to the dictionary, using them as key and value pairwise.
code::
d = ();
d.putPairs([\hello, 10, \whello, "lord", "abc", 7]);
::
subsection::Accessing
method::at
Access the value associated with the key.
code::
d = (robot: 99);
d.at(\robot); // Get the value associated with key
d[\robot]; // different syntax, same behaviour
d.at(\monkey); // Key doesn't exist: return Nil
::
method::atFail
Access the value associated with the key. If the key does not exist, return the result of teletype::function::.
method::keys
Return a link::Classes/Set:: of all keys.
code::
d = (hello: 9, whello: "world");
d.keys;
::
method::values
Return a link::Classes/List:: of all values.
code::
d = (hello: 9, whello: "world");
d.values;
::
method::atAll
Return an link::Classes/Array:: of all values for the given keys.
code::
d = (hello: 9, whello: "world", z: 99, c: 0.33);
d.atAll([\hello, \z, \hello, \c, \whello]);
::
method::getPairs
Return an link::Classes/Array:: with all keys and values pairwise.
code::
d = (hello: 9, whello: 77, z: 99);
d.getPairs;
::
method::associationAt
Access the link::Classes/Association:: that has the given key.
code::
d = (robot: 99);
d.associationAt(\robot); // Get the value associated with key
::
method::findKeyForValue
Try to find a given value and return its key.
code::
d = (hello: 1, whello: 1976);
d.findKeyForValue(1);
::
method::matchAt
The dictionary's keys are used as conditions against which the arbitrary item is matched. See: link::Reference/matchItem::
note::
if an item matches multiple criteria, the value returned is arbitrary. This is because a dictionary is an unordered collection. It's the user's responsibility to make sure that criteria are mutually exclusive.
::
list::
## If the key is an object, the item will be matched by identity (if key === item, the value will be returned).
## If the key is a collection, the item is matched if it's contained in the collection.
## If the key is a function, the function is evaluated with the item as an argument and the item is matched if the function returns true.
::
code::
(
d = (
0: \zero,
\abc: \alpha,
[1, 2, 3, 5, 8, 13, 21]: \fibonacci,
{ |x| try { x.even } }: \even // try is needed because argument might not be a number
);
);
d.matchAt(0)
d.matchAt(1)
d.matchAt(2) // matches both 'fibonacci' and 'even', either may be returned
d.matchAt(4)
d.matchAt(\abc)
::
method::trueAt
Returns link::Classes/True:: if the item at the key is true, otherwise false. This method is also valid in link::Classes/Object::.
method::falseAt
Returns link::Classes/False:: if the item at the key is not true, otherwise true. This method is inherited from link::Classes/Object::.
subsection::Iteration/Enumeration
Most methods for iteration work analogously to Dictionary's superclasses, see e.g. link::Classes/Collection::.
method::do, collect, reject, select
code::
// do, collect, reject, select
d = Dictionary[\a -> "hello", \b -> "robot", \c -> [1, 2, 3]];
d = (a: "hello", b: "robot", c: [1, 2, 3]); // equivalent
d.do { |item, i| [item, i].postln };
d.collect { |item| item + 100 };
d.reject { |item| item.size > 4 };
d.select { |item| item.size > 4 };
::
method::keysValuesDo
Iterate over the associations, and evaluate the function for each, passing key and value as argument.
code::
d = (a: "hello", b: "robot", c: [1, 2, 3]);
d.keysValuesDo { |key, value| postln("the key: " ++ key ++ " the value: " ++ value) };
::
method::keysValuesChange
Iterate over the associations, and evaluate the function for each, passing key and value as argument. Replace the value with the return value from the function (similar to link::#-collect::, but modifies the dictionary strong::in place::).
code::
d = (a: "hello", b: "robot", c: [1, 2, 3]);
d.keysValuesChange { |key, value| "the key: " ++ key ++ " the value: " ++ value };
d;
::
method::keysDo
Iterate over the associations, and evaluate the function for each, passing key as argument.
code::
d = (a: "hello", b: "robot", c: [1, 2, 3]);
d.keysDo { |key| postln("the key: " ++ key) };
::
method::associationsDo
Iterate over the associations, and evaluate the function for each.
code::
d = (a: "hello", b: "robot", c: [1, 2, 3]);
d.associationsDo { |assoc| postln("the association: " ++ assoc) };
::
method::pairsDo
Iterate over the associations, and evaluate the function for each, passing key and value as argument. Identical to link::#-keysValuesDo::
method::invert
Return a new dictionary with all the values as keys and vice versa.
code::
d = (a: "hello", b: "robot", c: [1, 2, 3]);
d.invert;
::
subsection::Other instance methods
method::order
Return an array of keys which corresponds to the order of the values of the dictionary.
code::
d = (a: 5, b: 7, c: 1, d: 0);
d.order;
d.atAll(d.order); // returns items in order
::
method::powerset
Return the set of all subsets: here an array of all sub-dictionaries.
code::
d = (a: 5, b: 7, c: 1, d: 0);
d.powerset;
::
method::merge
Combine two dictionaries into a new one by applying a function to each value. If strong::fill:: is true (default: true), values missing from one of them are kept as they are.
code::
d = (a: 5, b: 7, d: 0);
e = (a: 3, b: -3, c: 1);
merge(d, e, { |a, b| a + b });
merge(d, e, { |a, b| a + b }, false);
::
argument::that
another dictionary.
argument::func
a link::Classes/Function::.
argument::fill
a link::Classes/Boolean::.
method::blend
Blend two dictionaries into a new one by interpolating each value. If strong::fill:: is true (default: true), values missing from one of them are kept as they are.
code::
d = (a: 5, b: 7, d: 0);
e = (a: 3, b: -3, c: 1);
blend(d, e, 0.3);
blend(d, e, 0.3, false);
d = (a: 500, b: 0.001);
e = (a: 300, b: 0.1);
blend(d, e, 0.3, specs: (a: \freq, b: \rq));
::
argument::that
another dictionary.
argument::blend
the blend ratio as a link::Classes/Float:: between 0.0 and 1.0.
argument::fill
a link::Classes/Boolean::.
argument::specs
a dictionary of link::Classes/Spec::s that are applied to each before blending.
method::asSortedArray
Return the values in a sorted array of key value pairs.
code::
d = (a: 5, b: 7, c: 1, d: 0);
d.asSortedArray;
::
method::asKeyValuePairs
Return the values in an array of alternating key value pairs.
code::
d = (a: 5, b: 7, c: 1, d: 0);
d.asKeyValuePairs;
::
method::embedInStream
argument::event
The inval, usually in an event stream. See also link::Classes/Event::.
If the event is not nil, yields a copy, adding all the elements of the receiver event (this leaves the receiver unchanged). If it is nil, return the receiver.
code::
a = (note: 2);
b = (note: [3, 5]);
Pseq([a, b]).play;
::
If a key "embedInStream" is given, use this function instead. The behaviour of the event can be configured easily this way.
The arguments event (the receiver) and inevent (the inevent) are passed to the function. note::In infinite patterns, you strong::must:: call yield or embedInStream in the function, otherwise it will loop forever.::
code::
(
a = (
pattern: Pbind(\note, Pgeom(1, 1.1, { 20.rand }), \dur, 0.05),
embedInStream: { |event, inevent| event[\pattern].embedInStream(inevent) }
);
b = (note: [3, 5]);
c = (freq: 402, dur: 0.3);
Prand([a, b, c], inf).trace.play;
)
// change the events while playing
c[\freq] = [900, 1002, 1102];
c[\freq] = [200, 101, 1102];
::
A generator for dictionaries:
code::
(
d = (
a: 5, b: 7, c: 1,
rout: Routine { |inval|
inf.do { |i|
var event = d.copy.put(\count, i);
inval = event.embedInStream(inval);
}
}
);
)
// draw new values
d.rout.((z:999));
d.rout.((z:1, a:0));
d.rout.(());
::
SECTION::Overview
subsection::The Difference between Dictionary, IdentityDictionary, Environment, and Event
Often, the subclass link::Classes/Event:: is used as an IdentityDictionary, because there is a syntactical shortcut:
code::
a = (foo: 7); // return a new Event.
a.put(\foo, 2.718);
a.at(\foo);
a[\foo] = 3.5; // different syntax for put
::
Event, Environment and IdentityDictionary differ mainly insofar from Dictionary as the strong::keys:: are taken to be identical (===) objects (see IdentityDictionary), instead of equal (==) objects. By consequence, the subclasses are also faster for indexing. Apart from this, the subclasses add specific functionality only. Because of its very common usage, the examples often use the shortcut for the subclass Event.
code::
// preliminary identity and equality of strings and symbols
"hello" == "hello"; // true, but
"hello" === "hello"; // false. However:
\hello === \hello; // true
// compare
Dictionary["hello" -> 0, "hello" -> 1]; // Dictionary[ (hello -> 1) ]
("hello": 0, "hello": 1); // ( "hello": 1, "hello": 0 )
// for symbols as keys, the behaviour is identical:
Dictionary[\hello -> 1, \hello -> 0];
( \hello: 1, \hello: 0 );
::
|