Hello,
reading SuperCollider for the creative Musician I came across the following code example:
// Code Example 5.21
(
Event.partialEvents.keys.do({ |n|
n.postln;
Event.partialEvents[n].keys.postln;
\.postln;
});\ // <- ?
)
What is the purpose of the backslash after the semicolon? I can see the difference in the post window but don’t understand why it does what it does.
With \:
...
nodeEvent
Set[pauseServerNode, delta, addAction, nodeID, tailOf, stopServerNode, resumeServerNode, asEventStreamPlayer, map, isPlaying_, freeServerNode, hasGate, releaseServerNode, headOf, instrument, group, after, isPlaying, before, latency]
->
Without \:
...
nodeEvent
Set[pauseServerNode, delta, addAction, nodeID, tailOf, stopServerNode, resumeServerNode, asEventStreamPlayer, map, isPlaying_, freeServerNode, hasGate, releaseServerNode, headOf, instrument, group, after, isPlaying, before, latency]
-> Set[ampEvent, serverEvent, midiEvent, durEvent, playerEvent, bufferEvent, pitchEvent, nodeEvent]
Cheers