class EL_READABLE_STRING_32

(source code)

description

Extends the features of strings conforming to READABLE_STRING_32

note
	description: "Extends the features of strings conforming to ${READABLE_STRING_32}"

	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-05-02 6:46:49 GMT (Friday 2nd May 2025)"
	revision: "5"

class
	EL_READABLE_STRING_32

inherit
	EL_EXTENDED_READABLE_STRING_32

	EL_CHARACTER_32_AREA_ACCESS
		export
			{NONE} all
		end

	EL_32_BIT_IMPLEMENTATION

	EL_STRING_32_CONSTANTS

create
	make_empty

feature {NONE} -- Implementation

	new_readable: EL_READABLE_STRING_32
		do
			create Result.make_empty
		end

	other_area (other: READABLE_STRING_32): like area
		do
			Result := other.area
		end

	other_index_lower (other: READABLE_STRING_32): INTEGER
		do
			Result := other.area_lower
		end

end