16.2 The sorted-sequence-library.dylan file
The definitions for the sorted sequence library and module are simple. The only module variable that we need to export is for the sorted sequence class itself. All the generic functions that we want clients to use on sorted sequences are exported by the dylan module.
The |
|---|
module: dylan-user define library sorted-sequence export sorted-sequence; use dylan; use definitions; end library sorted-sequence; |
define module sorted-sequence export <sorted-sequence>; use dylan; use definitions; end module sorted-sequence; |
The definitions library and module are defined in Chapter 17, The Airport Application.




