repo.or.cz
/
supercollider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
clean up indentation and spacing
[supercollider.git]
/
HelpSource
/
Classes
/
UniqueID.schelp
blob
1eabfb35cfe5ead340f53dc99f5041876b0f7b0f
1
class::UniqueID
2
summary::source for unique numbers
3
categories::Core
4
5
classmethods::
6
7
method::initClass
8
9
initialize the starting id.
10
11
method::next
12
13
get next id, which is unique to the system
14
15
examples::
16
17
code::
18
// example
19
UniqueID.next;
20
UniqueID.next;
21
UniqueID.next;
22
::