class EL_TEXT_FILE_LINE_CURSOR

(source code)

description

STRING_8 implementation of EL_TEXT_FILE_ITERATION_CURSOR

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

	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: "2025-02-28 15:52:51 GMT (Friday 28th February 2025)"
	revision: "1"

class
	EL_TEXT_FILE_LINE_CURSOR

inherit
	EL_TEXT_FILE_ITERATION_CURSOR [STRING]

create
	make

feature -- Access

	shared_item: STRING
		do
			Result := file.last_string
		end

end