class EL_SYSTEM_ENCODINGS
System encodings accessible via EL_SHARED_ENCODINGS
note
description: "System encodings accessible via ${EL_SHARED_ENCODINGS}"
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-08-20 13:18:53 GMT (Tuesday 20th August 2024)"
revision: "7"
class
EL_SYSTEM_ENCODINGS
inherit
SYSTEM_ENCODINGS
rename
Console_encoding as Console,
System_encoding as System,
Utf8 as Utf_8,
Utf16 as Utf_16,
Utf32 as Unicode,
Iso_8859_1 as Latin_1
end
feature -- Access
standard: ARRAY [ENCODING]
do
Result := << Latin_1, Utf_8, Utf_16, Unicode >>
end
end