class EL_NATURAL_64_READER_WRITER

(source code)

description

Adapter interface to read a NATURAL_64 item from EL_READABLE and write an item to EL_WRITABLE

note
	description: "[
		Adapter interface to read a ${NATURAL_64} item from ${EL_READABLE}
		and write an item to ${EL_WRITABLE}
	]"

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

class
	EL_NATURAL_64_READER_WRITER

inherit
	EL_READER_WRITER_INTERFACE [NATURAL_64]

feature -- Factory

	new_item: NATURAL_64
		do
		end

feature -- Basic operations

	read_item (reader: EL_READABLE): NATURAL_64
		do
			Result := reader.read_natural_64
		end

	write (item: NATURAL_64; writer: EL_WRITABLE)
		do
			writer.write_natural_64 (item)
		end

	set (item: NATURAL_64; reader: EL_READABLE)
		do
		end

end