Ada Programming/Libraries/Ada.Strings.Wide_Wide_Unbounded
This language feature is only available from Ada 2005 on.
Ada.Strings.Wide_Wide_Unbounded is a unit of the Predefined Language Environment since Ada 2005.
Specification
edit-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual -- -------------------------------------------------------------------------with
Ada.Strings.Wide_Wide_Maps;package
Ada.Strings.Wide_Wide_Unboundedis
pragma
Preelaborate (Wide_Wide_Unbounded);type
Unbounded_Wide_Wide_Stringis
private
;pragma
Preelaborable_Initialization (Unbounded_Wide_Wide_String); Null_Unbounded_Wide_Wide_String :constant
Unbounded_Wide_Wide_String;function
Length (Source :in
Unbounded_Wide_Wide_String)return
Natural;type
Wide_Wide_String_Accessis
access
all
Wide_Wide_String;procedure
Free (X :in
out
Wide_Wide_String_Access); -- Conversion, Concatenation, and Selection functionsfunction
To_Unbounded_Wide_Wide_String (Source :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
To_Unbounded_Wide_Wide_String (Length :in
Natural)return
Unbounded_Wide_Wide_String;function
To_Wide_Wide_String (Source :in
Unbounded_Wide_Wide_String)return
Wide_Wide_String;procedure
Set_Unbounded_Wide_Wide_String (Target :out
Unbounded_Wide_Wide_String; Source :in
Wide_Wide_String);procedure
Append (Source :in
out
Unbounded_Wide_Wide_String; New_Item :in
Unbounded_Wide_Wide_String);procedure
Append (Source :in
out
Unbounded_Wide_Wide_String; New_Item :in
Wide_Wide_String);procedure
Append (Source :in
out
Unbounded_Wide_Wide_String; New_Item :in
Wide_Wide_Character);function
"&" (Left, Right :in
Unbounded_Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
"&" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
"&" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
"&" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_Character)return
Unbounded_Wide_Wide_String;function
"&" (Left :in
Wide_Wide_Character; Right :in
Unbounded_Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
Element (Source :in
Unbounded_Wide_Wide_String; Index :in
Positive)return
Wide_Wide_Character;procedure
Replace_Element (Source :in
out
Unbounded_Wide_Wide_String; Index :in
Positive; By :in
Wide_Wide_Character);function
Slice (Source :in
Unbounded_Wide_Wide_String; Low :in
Positive; High :in
Natural)return
Wide_Wide_String;function
Unbounded_Slice (Source :in
Unbounded_Wide_Wide_String; Low :in
Positive; High :in
Natural)return
Unbounded_Wide_Wide_String;procedure
Unbounded_Slice (Source :in
Unbounded_Wide_Wide_String; Target :out
Unbounded_Wide_Wide_String; Low :in
Positive; High :in
Natural);function
"=" (Left, Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
"=" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Boolean;function
"=" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
"<" (Left, Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
"<" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Boolean;function
"<" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
"<=" (Left, Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
"<=" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Boolean;function
"<=" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
">" (Left, Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
">" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Boolean;function
">" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
">=" (Left, Right :in
Unbounded_Wide_Wide_String)return
Boolean;function
">=" (Left :in
Unbounded_Wide_Wide_String; Right :in
Wide_Wide_String)return
Boolean;function
">=" (Left :in
Wide_Wide_String; Right :in
Unbounded_Wide_Wide_String)return
Boolean; -- Search subprogramsfunction
Index (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; From :in
Positive; Going :in
Direction := Forward; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity)return
Natural;function
Index (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; From :in
Positive; Going :in
Direction := Forward; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)return
Natural;function
Index (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; Going :in
Direction := Forward; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity)return
Natural;function
Index (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; Going :in
Direction := Forward; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)return
Natural;function
Index (Source :in
Unbounded_Wide_Wide_String; Set :in
Wide_Wide_Maps.Wide_Wide_Character_Set; From :in
Positive; Test :in
Membership := Inside; Going :in
Direction := Forward)return
Natural;function
Index (Source :in
Unbounded_Wide_Wide_String; Set :in
Wide_Wide_Maps.Wide_Wide_Character_Set; Test :in
Membership := Inside; Going :in
Direction := Forward)return
Natural;function
Index_Non_Blank (Source :in
Unbounded_Wide_Wide_String; From :in
Positive; Going :in
Direction := Forward)return
Natural;function
Index_Non_Blank (Source :in
Unbounded_Wide_Wide_String; Going :in
Direction := Forward)return
Natural;function
Count (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity)return
Natural;function
Count (Source :in
Unbounded_Wide_Wide_String; Pattern :in
Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)return
Natural;function
Count (Source :in
Unbounded_Wide_Wide_String; Set :in
Wide_Wide_Maps.Wide_Wide_Character_Set)return
Natural;procedure
Find_Token (Source :in
Unbounded_Wide_Wide_String; Set :in
Wide_Wide_Maps.Wide_Wide_Character_Set; Test :in
Membership; First :out
Positive; Last :out
Natural); -- Wide_Wide_String translation subprogramsfunction
Translate (Source :in
Unbounded_Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping)return
Unbounded_Wide_Wide_String;procedure
Translate (Source :in
out
Unbounded_Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping);function
Translate (Source :in
Unbounded_Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)return
Unbounded_Wide_Wide_String;procedure
Translate (Source :in
out
Unbounded_Wide_Wide_String; Mapping :in
Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function); -- Wide_Wide_String transformation subprogramsfunction
Replace_Slice (Source :in
Unbounded_Wide_Wide_String; Low :in
Positive; High :in
Natural; By :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;procedure
Replace_Slice (Source :in
out
Unbounded_Wide_Wide_String; Low :in
Positive; High :in
Natural; By :in
Wide_Wide_String);function
Insert (Source :in
Unbounded_Wide_Wide_String; Before :in
Positive; New_Item :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;procedure
Insert (Source :in
out
Unbounded_Wide_Wide_String; Before :in
Positive; New_Item :in
Wide_Wide_String);function
Overwrite (Source :in
Unbounded_Wide_Wide_String; Position :in
Positive; New_Item :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;procedure
Overwrite (Source :in
out
Unbounded_Wide_Wide_String; Position :in
Positive; New_Item :in
Wide_Wide_String);function
Delete (Source :in
Unbounded_Wide_Wide_String; From :in
Positive; Through :in
Natural)return
Unbounded_Wide_Wide_String;procedure
Delete (Source :in
out
Unbounded_Wide_Wide_String; From :in
Positive; Through :in
Natural);function
Trim (Source :in
Unbounded_Wide_Wide_String; Side :in
Trim_End)return
Unbounded_Wide_Wide_String;procedure
Trim (Source :in
out
Unbounded_Wide_Wide_String; Side :in
Trim_End);function
Trim (Source :in
Unbounded_Wide_Wide_String; Left :in
Wide_Wide_Maps.Wide_Wide_Character_Set; Right :in
Wide_Wide_Maps.Wide_Wide_Character_Set)return
Unbounded_Wide_Wide_String;procedure
Trim (Source :in
out
Unbounded_Wide_Wide_String; Left :in
Wide_Wide_Maps.Wide_Wide_Character_Set; Right :in
Wide_Wide_Maps.Wide_Wide_Character_Set);function
Head (Source :in
Unbounded_Wide_Wide_String; Count :in
Natural; Pad :in
Wide_Wide_Character := Wide_Wide_Space)return
Unbounded_Wide_Wide_String;procedure
Head (Source :in
out
Unbounded_Wide_Wide_String; Count :in
Natural; Pad :in
Wide_Wide_Character := Wide_Wide_Space);function
Tail (Source :in
Unbounded_Wide_Wide_String; Count :in
Natural; Pad :in
Wide_Wide_Character := Wide_Wide_Space)return
Unbounded_Wide_Wide_String;procedure
Tail (Source :in
out
Unbounded_Wide_Wide_String; Count :in
Natural; Pad :in
Wide_Wide_Character := Wide_Wide_Space);function
"*" (Left :in
Natural; Right :in
Wide_Wide_Character)return
Unbounded_Wide_Wide_String;function
"*" (Left :in
Natural; Right :in
Wide_Wide_String)return
Unbounded_Wide_Wide_String;function
"*" (Left :in
Natural; Right :in
Unbounded_Wide_Wide_String)return
Unbounded_Wide_Wide_String;private
pragma
Import (Ada, Unbounded_Wide_Wide_String);pragma
Import (Ada, Null_Unbounded_Wide_Wide_String);end
Ada.Strings.Wide_Wide_Unbounded;
See also
editWikibook
editExternal examples
edit- Search for examples of
Ada.Strings.Wide_Wide_Unbounded
in: Rosetta Code, GitHub (gists), any Alire crate or this Wikibook. - Search for posts related to
Ada.Strings.Wide_Wide_Unbounded
in: Stack Overflow, comp.lang.ada or any Ada related page.
Ada Reference Manual
editAda 2005
editAda 2012
editOpen-Source Implementations
editFSF GNAT
- Specification: a-stzunb.ads
- Body: a-stzunb.adb
drake
- Specification: strings/a-stzunb.ads