Package: Ada.Strings.Maps

Dependencies

with Ada.Characters.Latin_1;

Description

GNAT RUN-TIME COMPONENTS

A D A . S T R I N G S . M A P S

S p e c

$Revision: 1.21 $

Copyright (C) 1992-1997 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 2, 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. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License distributed with GNAT; see file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

As a special exception, if other files instantiate generics from this unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Public License.

GNAT was originally developed by the GNAT team at New York University. It is now maintained by Ada Core Technologies Inc (http://www.gnat.com).


Header

package Ada.Strings.Maps is
 
pragma Preelaborate (Maps);

Known child units

Ada.Strings.Maps.Constants(package)

Type Summary

Character_Mapping
Primitive Operations:  To_Domain, To_Mapping, To_Range, Value
Character_Mapping_Function
Character_Range
Primitive Operations:  To_Set
Character_Ranges
Character_Set
Primitive Operations:  "-", "<=", "=", "and", "not", "or", "xor", Is_In, Is_Subset, To_Ranges, To_Sequence, To_Set, To_Set, To_Set, To_Set

Constants and Named Numbers

Identity : constant Character_Mapping;
Operations on Mappings
Null_Set : constant Character_Set;
Constructors for Sets

Other Items:

package L renames Ada.Characters.Latin_1;
Character Set Declarations

type Character_Set is private;
Representation for a set of character values:

type Character_Range is record
   Low  : Character;
   High : Character;
end record;
Represents Character range Low .. High

type Character_Ranges is array (Positive range <>) of Character_Range;

function To_Set    (Ranges : in Character_Ranges) return Character_Set;

function To_Set    (Span   : in Character_Range)  return Character_Set;

function To_Ranges (Set    : in Character_Set)    return Character_Ranges;
Operations on Character Sets

function "="   (Left, Right : in Character_Set) return Boolean;

function "not" (Right       : in Character_Set) return Character_Set;

function "and" (Left, Right : in Character_Set) return Character_Set;

function "or"  (Left, Right : in Character_Set) return Character_Set;

function "xor" (Left, Right : in Character_Set) return Character_Set;

function "-"   (Left, Right : in Character_Set) return Character_Set;

function Is_In
  (Element : in Character;
   Set     : in Character_Set)
   return    Boolean;

function Is_Subset
  (Elements : in Character_Set;
   Set      : in Character_Set)
   return     Boolean;

function "<="
  (Left  : in Character_Set;
   Right : in Character_Set)
   return  Boolean
renames Is_Subset;

subtype Character_Sequence is String;
Alternative representation for a set of character values

function To_Set (Sequence  : in Character_Sequence) return Character_Set;

function To_Set (Singleton : in Character)          return Character_Set;

function To_Sequence (Set : in Character_Set) return Character_Sequence;
Character Mapping Declarations

type Character_Mapping is private;
Representation for a character to character mapping:

function Value
  (Map     : in Character_Mapping;
   Element : in Character)
   return    Character;

function To_Mapping
  (From, To : in Character_Sequence)
   return     Character_Mapping;

function To_Domain
  (Map  : in Character_Mapping)
   return Character_Sequence;

function To_Range
  (Map  : in Character_Mapping)
   return Character_Sequence;

type Character_Mapping_Function is
   access function (From : in Character) return Character;
Private Part

private

   --  Implementation-defined ...
end Ada.Strings.Maps;