class EL_FILLED_STRING_8_TABLE

(source code)

description

Table of filled strings of type STRING_8

note
	description: "Table of filled strings of type ${STRING_8}"

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

class
	EL_FILLED_STRING_8_TABLE

inherit
	EL_FUNCTION_CACHE_TABLE [STRING, TUPLE [c: CHARACTER; n: INTEGER]]
		rename
			make as make_cache,
			item as result_item
		export
			{NONE} all
		end

create
	make

feature {NONE} -- Initialization

	make
		do
			make_cache (11, agent new_filled)
		end

feature -- Access

	item (c: CHARACTER; n: INTEGER): STRING
		do
			if attached argument_key as key then
				key.c := c; key.n := n
				Result := result_item (key)
			end
		end

feature {NONE} -- Implementation

	new_filled (c: CHARACTER; n: INTEGER): STRING
		do
			create Result.make_filled (c, n)
		end
end