-- ============================================================================ -- >>>>>>>>>>>>>>>>>>>>>>>>>> ADA COMPILATION UNIT <<<<<<<<<<<<<<<<<<<<<<<<<<<< -- ============================================================================ -- -- NAME: Quick_Sort -- -- SPECIFICATION -- -- AUTHOR: Chuck Hobin -- -- DATE: 28 April 1994 -- -- CHANGE HISTORY -- -- MM-DD-YY | Initials | Description -- ---------------------------------------------------------------------------- -- -- ============================================================================ 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;