home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
SBOOCH
/
SORT.ADS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-10-31
|
287 b
|
12 lines
generic
type Item is private;
type Index is (<>);
type Items is array(Index range <>) of Item;
with function "<" (Left : in Item;
Right : in Item) return Boolean;
package Quick_Sort is
procedure Sort (The_Items : in out Items);
end Quick_Sort;