comparison gcc/ada/nlists.ads @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
4 -- -- 4 -- --
5 -- N L I S T S -- 5 -- N L I S T S --
6 -- -- 6 -- --
7 -- S p e c -- 7 -- S p e c --
8 -- -- 8 -- --
9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. -- 9 -- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under -- 11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- -- 12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- -- 13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
32 -- This package provides facilities for manipulating lists of nodes (see 32 -- This package provides facilities for manipulating lists of nodes (see
33 -- package Atree for format and implementation of tree nodes). The Link field 33 -- package Atree for format and implementation of tree nodes). The Link field
34 -- of the nodes is used as the forward pointer for these lists. See also 34 -- of the nodes is used as the forward pointer for these lists. See also
35 -- package Elists which provides another form of lists that are not threaded 35 -- package Elists which provides another form of lists that are not threaded
36 -- through the nodes (and therefore allow nodes to be on multiple lists). 36 -- through the nodes (and therefore allow nodes to be on multiple lists).
37
38 -- WARNING: There is a C version of this package. Any changes to this
39 -- source file must be properly reflected in the C header file nlists.h
37 40
38 with System; 41 with System;
39 with Types; use Types; 42 with Types; use Types;
40 43
41 package Nlists is 44 package Nlists is