19928/jj_containers/jj_fixed_set.e
Jocelyn Fiat 6dde6425c2 init
2024-06-17 09:09:33 +02:00

36 lines
532 B
Plaintext

note
description: "[
A set implemented as an array that cannot resize.
]"
author: "Jimmy J. Johnson"
date: "10/27/21"
copyright: "Copyright (c) 2021, Jimmy J. Johnson"
license: "Eiffel Forum v2 (http://www.eiffel.com/licensing/forum.txt)"
class
JJ_FIXED_SET [G]
inherit
FIXED [G]
rename
has as has alias "∋",
full as is_full
undefine
copy,
is_equal,
changeable_comparison_criterion
end
JJ_ARRAYED_SET [G]
undefine
is_full,
resizable
end
create
make,
make_filled
end