]> gitweb.factorcode.org Git - factor.git/commitdiff
sets: add docs about sequence ordering with members.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Dec 2020 17:14:54 +0000 (09:14 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Dec 2020 17:14:54 +0000 (09:14 -0800)
core/sets/sets-docs.factor

index c2de07b06c72452fe70821270c45c09b09e3d2b0..9cef927770e2f33994e69a79a2181a123a1bde36 100644 (file)
@@ -116,7 +116,8 @@ HELP: clear-set
 
 HELP: members
 { $values { "set" set } { "seq" sequence } }
-{ $description "Creates a sequence with a single copy of each member of the set." $nl "Each set type is expected to implement a method on this generic word." } ;
+{ $description "Creates a sequence with a single copy of each member of the set." $nl "Each set type is expected to implement a method on this generic word." }
+{ $notes "This will preserve the ordering of unique elements when called on a " { $link sequence } "." } ;
 
 HELP: in?
 { $values { "elt" object } { "set" set } { "?" boolean } }