annotate implementations/mtp/package.lisp @ 171:98443d36ac6a
Fixed sequence:make-sequence-like :around method
The :around method clobbered the %data slot, as Christophe put it.
darcs-hash:20080123180914-990ec-629ecf5d60363512e6831800bb1e61dbcb8f94f5.gz
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Wed, 23 Jan 2008 18:09:14 +0000 |
parents |
dc01096751af |
children |
03be243f9003 |
rev |
line source |
m@46
|
1 (cl:defpackage #:amuse-mtp
|
m@79
|
2 (:use #:common-lisp #:amuse #:amuse-utils #:amuse-segmentation)
|
m@53
|
3 (:export
|
m@53
|
4 ;; classes
|
m@53
|
5 #:mtp-dataset
|
m@79
|
6 #:mtp-composition
|
m@53
|
7 ;; accessors
|
m@53
|
8 #:get-dataset
|
m@53
|
9 ;; identifier constructors
|
m@53
|
10 #:make-mtp-composition-identifier
|
m@79
|
11 #:make-mtp-dataset-identifier
|
m@79
|
12 ;; phrase boundary classes
|
m@79
|
13 #:mtp-after-segmenter
|
m@79
|
14 #:mtp-before-segmenter
|
m@79
|
15 ))
|