1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ B O U N D E D --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2018, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Strings.Wide_Maps;
with Ada.Strings.Wide_Superbounded;
package Ada.Strings.Wide_Bounded is
pragma Preelaborate;
generic
Max : Positive;
-- Maximum length of a Bounded_Wide_String
package Generic_Bounded_Length is
Max_Length : constant Positive := Max;
type Bounded_Wide_String is private;
pragma Preelaborable_Initialization (Bounded_Wide_String);
Null_Bounded_Wide_String : constant Bounded_Wide_String;
subtype Length_Range is Natural range 0 .. Max_Length;
function Length (Source : Bounded_Wide_String) return Length_Range;
--------------------------------------------------------
-- Conversion, Concatenation, and Selection Functions --
--------------------------------------------------------
function To_Bounded_Wide_String
(Source : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
function To_Wide_String
(Source : Bounded_Wide_String) return Wide_String;
procedure Set_Bounded_Wide_String
(Target : out Bounded_Wide_String;
Source : Wide_String;
Drop : Truncation := Error);
pragma Ada_05 (Set_Bounded_Wide_String);
function Append
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
function Append
(Left : Bounded_Wide_String;
Right : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
function Append
(Left : Wide_String;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
function Append
(Left : Bounded_Wide_String;
Right : Wide_Character;
Drop : Truncation := Error) return Bounded_Wide_String;
function Append
(Left : Wide_Character;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Bounded_Wide_String;
Drop : Truncation := Error);
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Wide_String;
Drop : Truncation := Error);
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Wide_Character;
Drop : Truncation := Error);
function "&"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Bounded_Wide_String;
function "&"
(Left : Bounded_Wide_String;
Right : Wide_String) return Bounded_Wide_String;
function "&"
(Left : Wide_String;
Right : Bounded_Wide_String) return Bounded_Wide_String;
function "&"
(Left : Bounded_Wide_String;
Right : Wide_Character) return Bounded_Wide_String;
function "&"
(Left : Wide_Character;
Right : Bounded_Wide_String) return Bounded_Wide_String;
function Element
(Source : Bounded_Wide_String;
Index : Positive) return Wide_Character;
procedure Replace_Element
(Source : in out Bounded_Wide_String;
Index : Positive;
By : Wide_Character);
function Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural) return Wide_String;
function Bounded_Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural) return Bounded_Wide_String;
pragma Ada_05 (Bounded_Slice);
procedure Bounded_Slice
(Source : Bounded_Wide_String;
Target : out Bounded_Wide_String;
Low : Positive;
High : Natural);
pragma Ada_05 (Bounded_Slice);
function "="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean;
function "="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean;
function "="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean;
function "<"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean;
function "<"
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean;
function "<"
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean;
function "<="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean;
function "<="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean;
function "<="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean;
function ">"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean;
function ">"
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean;
function ">"
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean;
function ">="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean;
function ">="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean;
function ">="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean;
----------------------
-- Search Functions --
----------------------
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
function Index
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
pragma Ada_05 (Index);
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
pragma Ada_05 (Index);
function Index
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
pragma Ada_05 (Index);
function Index_Non_Blank
(Source : Bounded_Wide_String;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : Bounded_Wide_String;
From : Positive;
Going : Direction := Forward) return Natural;
pragma Ada_05 (Index_Non_Blank);
function Count
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
function Count
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
function Count
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set) return Natural;
procedure Find_Token
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural);
pragma Ada_2012 (Find_Token);
procedure Find_Token
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural);
------------------------------------
-- String Translation Subprograms --
------------------------------------
function Translate
(Source : Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping)
return Bounded_Wide_String;
procedure Translate
(Source : in out Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping);
function Translate
(Source : Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function)
return Bounded_Wide_String;
procedure Translate
(Source : in out Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function);
---------------------------------------
-- String Transformation Subprograms --
---------------------------------------
function Replace_Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Replace_Slice
(Source : in out Bounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error);
function Insert
(Source : Bounded_Wide_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Insert
(Source : in out Bounded_Wide_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error);
function Overwrite
(Source : Bounded_Wide_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Overwrite
(Source : in out Bounded_Wide_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error);
function Delete
(Source : Bounded_Wide_String;
From : Positive;
Through : Natural) return Bounded_Wide_String;
procedure Delete
(Source : in out Bounded_Wide_String;
From : Positive;
Through : Natural);
---------------------------------
-- String Selector Subprograms --
---------------------------------
function Trim
(Source : Bounded_Wide_String;
Side : Trim_End) return Bounded_Wide_String;
procedure Trim
(Source : in out Bounded_Wide_String;
Side : Trim_End);
function Trim
(Source : Bounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set) return Bounded_Wide_String;
procedure Trim
(Source : in out Bounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set);
function Head
(Source : Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Head
(Source : in out Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error);
function Tail
(Source : Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Bounded_Wide_String;
procedure Tail
(Source : in out Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error);
------------------------------------
-- String Constructor Subprograms --
------------------------------------
function "*"
(Left : Natural;
Right : Wide_Character) return Bounded_Wide_String;
function "*"
(Left : Natural;
Right : Wide_String) return Bounded_Wide_String;
function "*"
(Left : Natural;
Right : Bounded_Wide_String) return Bounded_Wide_String;
function Replicate
(Count : Natural;
Item : Wide_Character;
Drop : Truncation := Error) return Bounded_Wide_String;
function Replicate
(Count : Natural;
Item : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
function Replicate
(Count : Natural;
Item : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String;
private
-- Most of the implementation is in the separate non generic package
-- Ada.Strings.Wide_Superbounded. Type Bounded_Wide_String is derived
-- from type Wide_Superbounded.Super_String with the maximum length
-- constraint. In almost all cases, the routines in Wide_Superbounded
-- can be called with no requirement to pass the maximum length
-- explicitly, since there is at least one Bounded_Wide_String argument
-- from which the maximum length can be obtained. For all such
-- routines, the implementation in this private part is simply a
-- renaming of the corresponding routine in the super bouded package.
-- The five exceptions are the * and Replicate routines operating on
-- character values. For these cases, we have a routine in the body
-- that calls the superbounded routine passing the maximum length
-- explicitly as an extra parameter.
type Bounded_Wide_String is
new Wide_Superbounded.Super_String (Max_Length);
-- Deriving Bounded_Wide_String from Wide_Superbounded.Super_String is
-- the real trick, it ensures that the type Bounded_Wide_String
-- declared in the generic instantiation is compatible with the
-- Super_String type declared in the Wide_Superbounded package.
Null_Bounded_Wide_String : constant Bounded_Wide_String :=
(Max_Length => Max_Length,
Current_Length => 0,
Data =>
(1 .. Max_Length =>
Wide_Superbounded.Wide_NUL));
pragma Inline (To_Bounded_Wide_String);
procedure Set_Bounded_Wide_String
(Target : out Bounded_Wide_String;
Source : Wide_String;
Drop : Truncation := Error)
renames Set_Super_String;
function Length
(Source : Bounded_Wide_String) return Length_Range
renames Super_Length;
function To_Wide_String
(Source : Bounded_Wide_String) return Wide_String
renames Super_To_String;
function Append
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Append;
function Append
(Left : Bounded_Wide_String;
Right : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Append;
function Append
(Left : Wide_String;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Append;
function Append
(Left : Bounded_Wide_String;
Right : Wide_Character;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Append;
function Append
(Left : Wide_Character;
Right : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Append;
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Bounded_Wide_String;
Drop : Truncation := Error)
renames Super_Append;
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Wide_String;
Drop : Truncation := Error)
renames Super_Append;
procedure Append
(Source : in out Bounded_Wide_String;
New_Item : Wide_Character;
Drop : Truncation := Error)
renames Super_Append;
function "&"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Bounded_Wide_String
renames Concat;
function "&"
(Left : Bounded_Wide_String;
Right : Wide_String) return Bounded_Wide_String
renames Concat;
function "&"
(Left : Wide_String;
Right : Bounded_Wide_String) return Bounded_Wide_String
renames Concat;
function "&"
(Left : Bounded_Wide_String;
Right : Wide_Character) return Bounded_Wide_String
renames Concat;
function "&"
(Left : Wide_Character;
Right : Bounded_Wide_String) return Bounded_Wide_String
renames Concat;
function Element
(Source : Bounded_Wide_String;
Index : Positive) return Wide_Character
renames Super_Element;
procedure Replace_Element
(Source : in out Bounded_Wide_String;
Index : Positive;
By : Wide_Character)
renames Super_Replace_Element;
function Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural) return Wide_String
renames Super_Slice;
function Bounded_Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural) return Bounded_Wide_String
renames Super_Slice;
procedure Bounded_Slice
(Source : Bounded_Wide_String;
Target : out Bounded_Wide_String;
Low : Positive;
High : Natural)
renames Super_Slice;
overriding function "="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Equal;
function "="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean
renames Equal;
function "="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Equal;
function "<"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Less;
function "<"
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean
renames Less;
function "<"
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Less;
function "<="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Less_Or_Equal;
function "<="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean
renames Less_Or_Equal;
function "<="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Less_Or_Equal;
function ">"
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Greater;
function ">"
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean
renames Greater;
function ">"
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Greater;
function ">="
(Left : Bounded_Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Greater_Or_Equal;
function ">="
(Left : Bounded_Wide_String;
Right : Wide_String) return Boolean
renames Greater_Or_Equal;
function ">="
(Left : Wide_String;
Right : Bounded_Wide_String) return Boolean
renames Greater_Or_Equal;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
renames Super_Index;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
renames Super_Index;
function Index
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural
renames Super_Index;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
renames Super_Index;
function Index
(Source : Bounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
renames Super_Index;
function Index
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural
renames Super_Index;
function Index_Non_Blank
(Source : Bounded_Wide_String;
Going : Direction := Forward) return Natural
renames Super_Index_Non_Blank;
function Index_Non_Blank
(Source : Bounded_Wide_String;
From : Positive;
Going : Direction := Forward) return Natural
renames Super_Index_Non_Blank;
function Count
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
renames Super_Count;
function Count
(Source : Bounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
renames Super_Count;
function Count
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set) return Natural
renames Super_Count;
procedure Find_Token
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural)
renames Super_Find_Token;
procedure Find_Token
(Source : Bounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural)
renames Super_Find_Token;
function Translate
(Source : Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping)
return Bounded_Wide_String
renames Super_Translate;
procedure Translate
(Source : in out Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping)
renames Super_Translate;
function Translate
(Source : Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function)
return Bounded_Wide_String
renames Super_Translate;
procedure Translate
(Source : in out Bounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function)
renames Super_Translate;
function Replace_Slice
(Source : Bounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Replace_Slice;
procedure Replace_Slice
(Source : in out Bounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error)
renames Super_Replace_Slice;
function Insert
(Source : Bounded_Wide_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Insert;
procedure Insert
(Source : in out Bounded_Wide_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error)
renames Super_Insert;
function Overwrite
(Source : Bounded_Wide_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Overwrite;
procedure Overwrite
(Source : in out Bounded_Wide_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error)
renames Super_Overwrite;
function Delete
(Source : Bounded_Wide_String;
From : Positive;
Through : Natural) return Bounded_Wide_String
renames Super_Delete;
procedure Delete
(Source : in out Bounded_Wide_String;
From : Positive;
Through : Natural)
renames Super_Delete;
function Trim
(Source : Bounded_Wide_String;
Side : Trim_End) return Bounded_Wide_String
renames Super_Trim;
procedure Trim
(Source : in out Bounded_Wide_String;
Side : Trim_End)
renames Super_Trim;
function Trim
(Source : Bounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set) return Bounded_Wide_String
renames Super_Trim;
procedure Trim
(Source : in out Bounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set)
renames Super_Trim;
function Head
(Source : Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Head;
procedure Head
(Source : in out Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error)
renames Super_Head;
function Tail
(Source : Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Tail;
procedure Tail
(Source : in out Bounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error)
renames Super_Tail;
function "*"
(Left : Natural;
Right : Bounded_Wide_String) return Bounded_Wide_String
renames Times;
function Replicate
(Count : Natural;
Item : Bounded_Wide_String;
Drop : Truncation := Error) return Bounded_Wide_String
renames Super_Replicate;
end Generic_Bounded_Length;
end Ada.Strings.Wide_Bounded;
|