Mercurial > hg > amuse
comparison package.lisp @ 18:70e76c1c87b7
Bug fixes and exports in package.lisp
darcs-hash:20061213114049-f76cc-4c4175a1ad8b24e1c5df82c9fb67445ac32977d9.gz
author | David Lewis <d.lewis@gold.ac.uk> |
---|---|
date | Wed, 13 Dec 2006 11:40:49 +0000 |
parents | db28a877b2b9 |
children | 2f331bbdfab8 |
comparison
equal
deleted
inserted
replaced
17:930e9880ed3f | 18:70e76c1c87b7 |
---|---|
1 (cl:defpackage #:amuse | 1 (cl:defpackage #:amuse |
2 (:use #:common-lisp) | 2 (:use #:common-lisp) |
3 (:export)) | 3 (:export #:constituent |
4 | 4 #:composition |
5 | 5 #:monody |
6 #:moment-designator | |
7 #:period-designator | |
8 #:anchored-period-designator | |
9 #:pitch-designator | |
10 #:pitch-interval-designator | |
11 #:moment | |
12 #:period | |
13 #:floating-period | |
14 #:anchored-period | |
15 #:frequency | |
16 #:pitch | |
17 #:chromatic-pitch | |
18 #:diatonic-pitch | |
19 #:pitch-interval | |
20 #:pitched-event | |
21 #:midi-pitched-event | |
22 #:percussive-event | |
23 #:get-composition | |
24 #:chromatic-pitch | |
25 #:diatonic-pitch | |
26 #:chromatic-pitch-number | |
27 #:meredith-chromatic-pitch-number | |
28 #:pitch-class | |
29 #:span | |
30 #:duration | |
31 #:timepoint | |
32 #:onset | |
33 #:cut-off | |
34 #:anchored-period | |
35 #:floating-period | |
36 #:moment | |
37 #:time+ | |
38 #:time- | |
39 #:time> | |
40 #:time< | |
41 #:time= | |
42 #:time>= | |
43 #:time<= | |
44 #:time/= | |
45 #:duration> | |
46 #:duration< | |
47 #:duration= | |
48 #:duration>= | |
49 #:duration<= | |
50 #:duration/= | |
51 #:duration* | |
52 #:duration/ | |
53 #:pitch+ | |
54 #:pitch- | |
55 #:pitch> | |
56 #:pitch< | |
57 #:pitch= | |
58 #:pitch>= | |
59 #:pitch<= | |
60 #:pitch/= | |
61 #:interval> | |
62 #:interval< | |
63 #:interval= | |
64 #:interval>= | |
65 #:interval<= | |
66 #:interval/= | |
67 #:meets | |
68 #:before | |
69 #:overlaps | |
70 #:during | |
71 #:starts | |
72 #:ends | |
73 #:subinterval | |
74 #:disjoint | |
75 #:period-intersection | |
76 #:inter-onset-interval | |
77 #:make-moment | |
78 #:make-floating-period | |
79 #:make-anchored-period | |
80 #:make-chromatic-pitch | |
81 #:make-diatonic-pitch | |
82 #:make-pitch-interval | |
83 #:make-midi-pitched-event)) |