This file is indexed.

/usr/share/SuperCollider/HelpSource/Classes/RefCopy.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
class::RefCopy
summary::a reference to the copy of a value
categories::Core

description::
A Ref  instance is an object with a single slot named 'value' that serves as a holder of  an object.
RefCopy, in difference to Ref, returns only copies of the value when next is called.
This can be useful when the original is to be kept unchanged.

see link::Classes/Ref:: for other methods.

examples::

code::
a = [1, 2, 3];
x = RefCopy(a);
b = x.next;
b.put(0, 100); // modify b
a; // a is unchanged.
::