1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.RED_BLACK_TREES --
9 -- This specification is adapted from the Ada Reference Manual for use with --
10 -- GNAT. In accordance with the copyright of that document, you can freely --
11 -- copy and modify this specification, provided that if you redistribute a --
12 -- modified version, any changes that you have made are clearly indicated. --
14 ------------------------------------------------------------------------------
16 package Ada
.Containers
.Red_Black_Trees
is
17 pragma Pure
(Red_Black_Trees
);
19 type Color_Type
is (Red
, Black
);
22 type Node_Access
is private;
23 package Generic_Tree_Types
is
24 type Tree_Type
is record
30 end Generic_Tree_Types
;
31 end Ada
.Containers
.Red_Black_Trees
;