]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ada/a-stwibo.adb
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / gcc / ada / a-stwibo.adb
CommitLineData
d23b8f57
RK
1------------------------------------------------------------------------------
2-- --
3084fecd 3-- GNAT RUN-TIME COMPONENTS --
d23b8f57
RK
4-- --
5-- A D A . S T R I N G S . W I D E _ B O U N D E D --
6-- --
7-- B o d y --
8-- --
748086b7 9-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
d23b8f57
RK
10-- --
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- --
748086b7 13-- ware Foundation; either version 3, or (at your option) any later ver- --
d23b8f57
RK
14-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
748086b7
JJ
16-- or FITNESS FOR A PARTICULAR PURPOSE. --
17-- --
18-- As a special exception under Section 7 of GPL version 3, you are granted --
19-- additional permissions described in the GCC Runtime Library Exception, --
20-- version 3.1, as published by the Free Software Foundation. --
21-- --
22-- You should have received a copy of the GNU General Public License and --
23-- a copy of the GCC Runtime Library Exception along with this program; --
24-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25-- <http://www.gnu.org/licenses/>. --
d23b8f57
RK
26-- --
27-- GNAT was originally developed by the GNAT team at New York University. --
71ff80dc 28-- Extensive contributions were provided by Ada Core Technologies Inc. --
d23b8f57
RK
29-- --
30------------------------------------------------------------------------------
31
d23b8f57
RK
32package body Ada.Strings.Wide_Bounded is
33
34 package body Generic_Bounded_Length is
35
d23b8f57
RK
36 ---------
37 -- "*" --
38 ---------
39
40 function "*"
82c80734
RD
41 (Left : Natural;
42 Right : Wide_Character) return Bounded_Wide_String
d23b8f57 43 is
d23b8f57 44 begin
fbf5a39b 45 return Times (Left, Right, Max_Length);
d23b8f57
RK
46 end "*";
47
48 function "*"
82c80734
RD
49 (Left : Natural;
50 Right : Wide_String) return Bounded_Wide_String
d23b8f57 51 is
d23b8f57 52 begin
fbf5a39b 53 return Times (Left, Right, Max_Length);
d23b8f57
RK
54 end "*";
55
d23b8f57
RK
56 ---------------
57 -- Replicate --
58 ---------------
59
60 function Replicate
82c80734
RD
61 (Count : Natural;
62 Item : Wide_Character;
63 Drop : Strings.Truncation := Strings.Error)
64 return Bounded_Wide_String
d23b8f57 65 is
d23b8f57 66 begin
fbf5a39b 67 return Super_Replicate (Count, Item, Drop, Max_Length);
d23b8f57
RK
68 end Replicate;
69
70 function Replicate
82c80734
RD
71 (Count : Natural;
72 Item : Wide_String;
73 Drop : Strings.Truncation := Strings.Error)
74 return Bounded_Wide_String
d23b8f57 75 is
d23b8f57 76 begin
fbf5a39b 77 return Super_Replicate (Count, Item, Drop, Max_Length);
d23b8f57
RK
78 end Replicate;
79
82c80734
RD
80 ----------------------------
81 -- To_Bounded_Wide_String --
82 ----------------------------
d23b8f57
RK
83
84 function To_Bounded_Wide_String
82c80734
RD
85 (Source : Wide_String;
86 Drop : Strings.Truncation := Strings.Error)
87 return Bounded_Wide_String
d23b8f57 88 is
d23b8f57 89 begin
fbf5a39b 90 return To_Super_String (Source, Max_Length, Drop);
d23b8f57
RK
91 end To_Bounded_Wide_String;
92
d23b8f57 93 end Generic_Bounded_Length;
d23b8f57 94end Ada.Strings.Wide_Bounded;