aboutsummaryrefslogtreecommitdiff
path: root/python/python3-ordered-set/README
diff options
context:
space:
mode:
authorAntonio Leal <antonioleal@yahoo.com>2025-09-24 21:32:40 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-09-26 21:55:24 +0700
commit06b1878e82c7a42b2ee4d1cefafacf4e41ef4eea (patch)
tree089280662e98c0708c9796a19883d1d16b86c61c /python/python3-ordered-set/README
parente5c91ae9dce1ae487b6e64e194d993ddeffbcfb5 (diff)
python/python3-ordered-set: Added (mutable data structure).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-ordered-set/README')
-rw-r--r--python/python3-ordered-set/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/python3-ordered-set/README b/python/python3-ordered-set/README
new file mode 100644
index 0000000000..0543976668
--- /dev/null
+++ b/python/python3-ordered-set/README
@@ -0,0 +1,4 @@
+An OrderedSet is a mutable data structure that is a hybrid of a list
+and a set.
+It remembers the order of its entries, and every entry has an index
+number that can be looked up.