class EL_STYLED_STRING_8_LIST

(source code)

Client examples: BASE_AUTOTEST_APP

description

STRING_8 implementation of EL_STYLED_TEXT_LIST

note
	description: "${STRING_8} implementation of ${EL_STYLED_TEXT_LIST}"

	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-01-20 19:18:25 GMT (Saturday 20th January 2024)"
	revision: "6"

class
	EL_STYLED_STRING_8_LIST

inherit
	EL_STYLED_TEXT_LIST [STRING_8]

create
	make, make_filled, make_from, make_empty, make_from_array, make_regular

convert
	make_regular ({STRING_8})

feature {NONE} -- Implementation

	n_character_string (c: CHARACTER; n: INTEGER): STRING_8
		do
			Result := Character_string_8_table.item (c, 2)
		end

	new_text (text: READABLE_STRING_GENERAL): STRING_8
		do
			Result := text.as_string_8
		end

end