Справочник Ada 95
A.4.1 Пакет Strings
Пакет Strings предоставляет объявления, общие для пакетов обработки строк.
Статическая семантика
Библиотечный пакет Strings имеет следующее объявление:
package Ada.Strings is
pragma Pure(Strings);
pragma Pure(Strings);
Space : constant Character := ' ';
Wide_Space : constant Wide_Character := ' ';
Wide_Space : constant Wide_Character := ' ';
Length_Error, Pattern_Error, Index_Error, Translation_Error : exception;
type Alignment is (Left, Right, Center);
type Truncation is (Left, Right, Error);
type Membership is (Inside, Outside);
type Direction is (Forward, Backward);
type Trim_End is (Left, Right, Both);
end Ada.Strings;
type Truncation is (Left, Right, Error);
type Membership is (Inside, Outside);
type Direction is (Forward, Backward);
type Trim_End is (Left, Right, Both);
end Ada.Strings;