class EL_STRING_32_LIST
Client examples: SPLIT_STRING_TEST_SET ; STRING_BENCHMARK_COMPARISON ; ZSTRING_TEST_SET ; ZSTRING_TRANSFORMABLE_TEST_SET
List of strings of type STRING_32
note
description: "List of strings of type ${STRING_32}"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-09-11 8:07:52 GMT (Wednesday 11th September 2024)"
revision: "22"
class
EL_STRING_32_LIST
inherit
EL_STRING_LIST [STRING_32]
redefine
add_to_checksum, item_indent, new_string, tab_string
end
EL_SHARED_STRING_32_CURSOR
EL_CHARACTER_32_CONSTANTS
create
make, make_empty, make_with_lines, make_filled, make_from_special,
make_from, make_from_substrings, make_from_array, make_from_tuple, make_from_general,
make_split, make_adjusted_split, make_word_split, make_comma_split
convert
make_from_array ({ARRAY [STRING_32]}), make_from_tuple ({TUPLE}), make_comma_split ({STRING_32})
feature -- Access
item_indent: INTEGER
do
if attached cursor_32 (item) as c32 then
Result := c32.leading_occurrences ('%T')
end
end
feature {NONE} -- Implementation
add_to_checksum (crc: like crc_generator; str: STRING_32)
do
crc.add_string_32 (str)
end
new_string (general: READABLE_STRING_GENERAL): STRING_32
do
Result := general.to_string_32
end
tab_string (a_count: INTEGER): STRING_32
do
Result := tab.as_string_32 (a_count)
end
end