class EL_C_STRING_32_BE
Client examples: VTD_XML_AUTOTEST_APP
32-bit big-endian C string
note
description: "32-bit big-endian C string"
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: "2023-08-01 16:18:58 GMT (Tuesday 1st August 2023)"
revision: "8"
class
EL_C_STRING_32_BE
inherit
EL_C_STRING_32
redefine
code, put_item
end
create
make_owned, make_shared, make_owned_of_size, make_shared_of_size, make, make_from_string
feature -- Access
code (index: INTEGER): NATURAL_32
--
do
Result := read_natural_32_be ((index - 1) * width)
end
feature -- Element change
put_item (value: NATURAL_32; index: INTEGER)
--
do
put_natural_32_be (value, (index - 1) * width)
end
end