class EL_IMMUTABLE_STRING_8_GRID

(source code)

Client examples: BASE_AUTOTEST_APP

description

2 dimensional array of IMMUTABLE_STRING_8 strings that share the same comma separated text of a STRING_8 manifest constant

note
	description: "[
		2 dimensional array of ${IMMUTABLE_STRING_8} strings that share the same
		comma separated text of a ${STRING_8} manifest constant
	]"

	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: "4"

class
	EL_IMMUTABLE_STRING_8_GRID

inherit
	EL_IMMUTABLE_STRING_GRID [STRING_8, IMMUTABLE_STRING_8]
		undefine
			bit_count
		end

	EL_STRING_8_BIT_COUNTABLE [STRING_8]

create
	make

feature {NONE} -- Implementation

	new_split_list (str: STRING_8): EL_SPLIT_IMMUTABLE_STRING_8_LIST
		do
			create Result.make_shared_adjusted (str, ',', {EL_SIDE}.Left)
		end

	new_table: HASH_TABLE [IMMUTABLE_STRING_8, IMMUTABLE_STRING_8]
		do
			create Result.make_equal (height)
		end

end