class EL_IMMUTABLE_STRING_TABLE_CURSOR

(source code)

description

Iteration cursor for EL_IMMUTABLE_STRING_TABLE

note
	description: "Iteration cursor for ${EL_IMMUTABLE_STRING_TABLE}"

	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_TABLE_CURSOR [IMMUTABLE -> IMMUTABLE_STRING_GENERAL]

inherit
	HASH_TABLE_ITERATION_CURSOR [INTEGER_64, IMMUTABLE]
		rename
			item as interval_item
		export
			{NONE} interval_item
		redefine
			target
		end

create
	make

feature -- Access

	item: IMMUTABLE
		do
			Result := target.new_item_substring (interval_item)
		end

feature {NONE} -- Internal attributes

	target: EL_IMMUTABLE_STRING_TABLE [STRING_GENERAL, IMMUTABLE]
end