class EL_SPLIT_ON_CHARACTER_CURSOR
Client examples: GROUPED_LINES_CURSOR
EL_ITERABLE_SPLIT_CURSOR implemented with CHARACTER_32 separator
note
description: "[
${EL_ITERABLE_SPLIT_CURSOR} implemented with ${CHARACTER_32} separator
]"
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:25 GMT (Saturday 20th January 2024)"
revision: "5"
class
EL_SPLIT_ON_CHARACTER_CURSOR [S -> READABLE_STRING_GENERAL]
inherit
EL_ITERABLE_SPLIT_CURSOR [S, CHARACTER_32]
create
make
feature {NONE} -- Implementation
set_separator_start
do
separator_start := target.index_of (separator, separator_end + 1)
end
feature {NONE} -- Constants
Separator_count: INTEGER = 1
end