| User's Guide: A Framework for Object Persistency for GNAT; Version 0.6.1; Document Revision $Revision: 1.17 $ | ||
|---|---|---|
| Prev | Chapter 36. Util.String_Map | Next |
type Value_Type is private;
procedure Put(
This : in out Object;
Key : in String;
Value : in Value_Type );
function Get(
This : in Object;
Key : in String ) return Value_Type;
function Is_Empty(
This : in Object ) return Boolean;
function Key(
This : in Object;
H : in Natural ) return String;
Add an Key/Value pair to the string map
C.1 - The key is not already in the table
The Value is stored in the map and may be retrieved by means of the Get method.
Notes: