This file is indexed.

/usr/share/SuperCollider/HelpSource/Classes/Pdict.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
class:: Pdict
summary:: pattern that embeds patterns from a dictionary
categories:: Libraries>JITLib>Patterns, Live Coding
related:: Classes/Pbind

description::
A general purpose lookup stream.

Examples::

code::
SynthDescLib.read;

(
e = (
	a: Pbind(\dur, 0.1, \degree, Pseq([0, 5, 4, 3, 2])),
	b: Pbind(\dur, 0.06, \degree, Pseq([7, 8, 7, 8])),
	c: Pbind(\dur, 0.3, \degree, Pseq([0, 1, 2], 2))
);

x = Pdict(e, Pseq([
			\a, \b,
			Prand([\a, \c])
		], 4)
	);
x.play;
)
::