Gobo Eiffel String Library
Copyright (c) 2004-2005, Object-Tools and others
Eiffel Forum License v2 (see forum.txt)
-- Create a new formatter.
-- (From ST_PARAMETER_FORMATTER)
-- Reset options to their default values.
-- (From ST_PARAMETER_FORMATTER)
-- Base used to format integer;
-- 8 for octal, 10 for decimal, 16 for hexadecimal, ...
-- (From ST_INTEGER_FORMATTER)
-- Is a_parameter a valid parameter for current formatter?
-- (From ST_PARAMETER_FORMATTER)
-- Format a_parameter to a_stream.
-- (From ST_INTEGER_FORMATTER)
-- Format a_parameter to a_stream.
-- (Use DS_CELL [INTEGER_32] because in SE 2.1
-- INTEGER_32 does not conform to ANY.)
-- (From ST_PARAMETER_FORMATTER)
-- Should formatted parameter be centered?
-- (From ST_PARAMETER_FORMATTER)
-- Should formatted parameter be aligned to the left?
-- (From ST_PARAMETER_FORMATTER)
-- Should the formatted parameter be in lowercase?
-- (Not applicable to all formatters.)
-- (From ST_PARAMETER_FORMATTER)
-- Should formatted parameter be aligned to the right?
-- (From ST_PARAMETER_FORMATTER)
-- Padding character
-- (Default is space character)
-- (From ST_PARAMETER_FORMATTER)
-- Should the '+' sign be shown in the formatted parameter?
-- (By default only the '-' sign is shown.)
-- (From ST_PARAMETER_FORMATTER)
-- Precision (formatter-dependent meaning)
-- (May cause truncation of formatted parameter.)
-- (From ST_PARAMETER_FORMATTER)
-- Minimum width of formatted parameter
-- (Does never cause truncation of formatted parameter.)
-- (From ST_PARAMETER_FORMATTER)
-- Set center alignment.
-- (From ST_PARAMETER_FORMATTER)
-- Set is_lowercase to b.
-- (From ST_PARAMETER_FORMATTER)
-- Set padding_character to c.
-- (From ST_PARAMETER_FORMATTER)
-- Set plus_sign_enabled to b.
-- (From ST_PARAMETER_FORMATTER)
Formatters for unsigned integer parameters, $x or $X