class EL_ZSTRING_OCCURRENCE_EDITOR
Client examples: STRING_TEST
Object that edits substring intervals of a ZSTRING instance
note
description: "Object that edits substring intervals of a ${ZSTRING} instance"
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: "2025-04-11 15:05:30 GMT (Friday 11th April 2025)"
revision: "12"
class
EL_ZSTRING_OCCURRENCE_EDITOR
inherit
EL_OCCURRENCE_EDITOR [ZSTRING]
rename
extended_string as super_z
redefine
default_target, is_equal, target
end
EL_ZSTRING_OCCURRENCE_INTERVALS
rename
item as interval_item,
fill_by_string as fill_intervals_by_string,
make_empty as make_intervals,
wipe_out as wipe_out_intervals
export
{NONE} all
{ANY} count, index
undefine
fill, make, make_by_string
redefine
is_equal
end
EL_SHARED_ZSTRING_BUFFER_POOL
create
make, make_empty, make_by_string, make_adjusted, make_adjusted_by_string
feature -- Comparison
is_equal (other: like Current): BOOLEAN
do
Result := target ~ other.target and then Precursor {EL_ZSTRING_OCCURRENCE_INTERVALS} (other)
end
feature {NONE} -- Implementation
default_target: ZSTRING
do
Result := Empty_string
end
wipe_out_target
do
target.wipe_out
end
feature {EL_OCCURRENCE_EDITOR} -- Internal attributes
target: ZSTRING
end