vss_24.0.0_b4d0be7c/tools/ucd/ucd.ads

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
--
--  Copyright (C) 2021, AdaCore
--
--  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--

with Ada.Containers.Vectors;

package UCD is

   pragma Preelaborate;

   type Code_Point is range 16#00_0000# .. 16#10_FFFF#;

   package Code_Point_Vectors is
     new Ada.Containers.Vectors (Positive, UCD.Code_Point);

end UCD;