Mercurial > hg > amuse
annotate 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 |
rev | line source |
---|---|
m@5 | 1 (cl:defpackage #:amuse |
m@5 | 2 (:use #:common-lisp) |
d@18 | 3 (:export #:constituent |
d@18 | 4 #:composition |
d@18 | 5 #:monody |
d@18 | 6 #:moment-designator |
d@18 | 7 #:period-designator |
d@18 | 8 #:anchored-period-designator |
d@18 | 9 #:pitch-designator |
d@18 | 10 #:pitch-interval-designator |
d@18 | 11 #:moment |
d@18 | 12 #:period |
d@18 | 13 #:floating-period |
d@18 | 14 #:anchored-period |
d@18 | 15 #:frequency |
d@18 | 16 #:pitch |
d@18 | 17 #:chromatic-pitch |
d@18 | 18 #:diatonic-pitch |
d@18 | 19 #:pitch-interval |
d@18 | 20 #:pitched-event |
d@18 | 21 #:midi-pitched-event |
d@18 | 22 #:percussive-event |
d@18 | 23 #:get-composition |
d@18 | 24 #:chromatic-pitch |
d@18 | 25 #:diatonic-pitch |
d@18 | 26 #:chromatic-pitch-number |
d@18 | 27 #:meredith-chromatic-pitch-number |
d@18 | 28 #:pitch-class |
d@18 | 29 #:span |
d@18 | 30 #:duration |
d@18 | 31 #:timepoint |
d@18 | 32 #:onset |
d@18 | 33 #:cut-off |
d@18 | 34 #:anchored-period |
d@18 | 35 #:floating-period |
d@18 | 36 #:moment |
d@18 | 37 #:time+ |
d@18 | 38 #:time- |
d@18 | 39 #:time> |
d@18 | 40 #:time< |
d@18 | 41 #:time= |
d@18 | 42 #:time>= |
d@18 | 43 #:time<= |
d@18 | 44 #:time/= |
d@18 | 45 #:duration> |
d@18 | 46 #:duration< |
d@18 | 47 #:duration= |
d@18 | 48 #:duration>= |
d@18 | 49 #:duration<= |
d@18 | 50 #:duration/= |
d@18 | 51 #:duration* |
d@18 | 52 #:duration/ |
d@18 | 53 #:pitch+ |
d@18 | 54 #:pitch- |
d@18 | 55 #:pitch> |
d@18 | 56 #:pitch< |
d@18 | 57 #:pitch= |
d@18 | 58 #:pitch>= |
d@18 | 59 #:pitch<= |
d@18 | 60 #:pitch/= |
d@18 | 61 #:interval> |
d@18 | 62 #:interval< |
d@18 | 63 #:interval= |
d@18 | 64 #:interval>= |
d@18 | 65 #:interval<= |
d@18 | 66 #:interval/= |
d@18 | 67 #:meets |
d@18 | 68 #:before |
d@18 | 69 #:overlaps |
d@18 | 70 #:during |
d@18 | 71 #:starts |
d@18 | 72 #:ends |
d@18 | 73 #:subinterval |
d@18 | 74 #:disjoint |
d@18 | 75 #:period-intersection |
d@18 | 76 #:inter-onset-interval |
d@18 | 77 #:make-moment |
d@18 | 78 #:make-floating-period |
d@18 | 79 #:make-anchored-period |
d@18 | 80 #:make-chromatic-pitch |
d@18 | 81 #:make-diatonic-pitch |
d@18 | 82 #:make-pitch-interval |
d@18 | 83 #:make-midi-pitched-event)) |