linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / Method.schelp
blobcb3027a7e0dd54740eee3d5c8981dd27d0fe3020
1 class::Method
2 categories::Core>Kernel
3 summary:: Code that implements an operation upon instances of a Class.
4 related:: Classes/Class
6 description::
7 A Method is code that is a part of the set of operations upon instances of a link::Classes/Class::.
9 instanceMethods::
11 method::ownerClass
12 returns::
13 The link::Classes/Class:: for which the method is part of the implementation.
15 method::name
16 returns::
17 A link::Classes/Symbol:: which is the name of the Method.
19 method::primitiveName
20 returns::
21 A link::Classes/Symbol:: which contains the name of the primitive function that implements the Method, if there is one.
23 method:: filenameSymbol
24 returns::
25 A link::Classes/Symbol:: which is the full path of the source file that this method is defined in.