class EVOLICITY_SERIALIZEABLE_AS_ZSTRING

(source code)

Client examples: GENERATE_MAKE_ROUTINE_FOR_EQA_TEST_SET

description

Object that is serializeable to string of type ZSTRING

note
	description: "Object that is serializeable to string of type ${ZSTRING}"

	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:27 GMT (Saturday 20th January 2024)"
	revision: "5"

deferred class
	EVOLICITY_SERIALIZEABLE_AS_ZSTRING

inherit
	EVOLICITY_SERIALIZEABLE_AS_STRING_GENERAL

feature {NONE} -- Constants

	Once_medium: EL_ZSTRING_IO_MEDIUM
		-- shared medium to merge text into
		once
			create Result.make_open_write (1024)
		end

end