File : a-stwibo.adb


   1 ------------------------------------------------------------------------------
   2 --                                                                          --
   3 --                         GNAT RUN-TIME COMPONENTS                         --
   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 --                                                                          --
   9 --          Copyright (C) 1992-2009, Free Software Foundation, Inc.         --
  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- --
  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- --
  15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  16 -- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
  17 --                                                                          --
  18 --                                                                          --
  19 --                                                                          --
  20 --                                                                          --
  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/>.                                          --
  26 --                                                                          --
  27 -- GNAT was originally developed  by the GNAT team at  New York University. --
  28 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
  29 --                                                                          --
  30 ------------------------------------------------------------------------------
  31 
  32 package body Ada.Strings.Wide_Bounded is
  33 
  34    package body Generic_Bounded_Length is
  35 
  36       ---------
  37       -- "*" --
  38       ---------
  39 
  40       function "*"
  41         (Left  : Natural;
  42          Right : Wide_Character) return Bounded_Wide_String
  43       is
  44       begin
  45          return Times (Left, Right, Max_Length);
  46       end "*";
  47 
  48       function "*"
  49         (Left  : Natural;
  50          Right : Wide_String) return Bounded_Wide_String
  51       is
  52       begin
  53          return Times (Left, Right, Max_Length);
  54       end "*";
  55 
  56       ---------------
  57       -- Replicate --
  58       ---------------
  59 
  60       function Replicate
  61         (Count : Natural;
  62          Item  : Wide_Character;
  63          Drop  : Strings.Truncation := Strings.Error)
  64          return Bounded_Wide_String
  65       is
  66       begin
  67          return Super_Replicate (Count, Item, Drop, Max_Length);
  68       end Replicate;
  69 
  70       function Replicate
  71         (Count : Natural;
  72          Item  : Wide_String;
  73          Drop  : Strings.Truncation := Strings.Error)
  74          return Bounded_Wide_String
  75       is
  76       begin
  77          return Super_Replicate (Count, Item, Drop, Max_Length);
  78       end Replicate;
  79 
  80       ----------------------------
  81       -- To_Bounded_Wide_String --
  82       ----------------------------
  83 
  84       function To_Bounded_Wide_String
  85         (Source : Wide_String;
  86          Drop   : Strings.Truncation := Strings.Error)
  87          return Bounded_Wide_String
  88       is
  89       begin
  90          return To_Super_String (Source, Max_Length, Drop);
  91       end To_Bounded_Wide_String;
  92 
  93    end Generic_Bounded_Length;
  94 end Ada.Strings.Wide_Bounded;