]> gitweb.factorcode.org Git - factor.git/blobdiff - core/sets/sets-docs.factor
sets: add docs about sequence ordering with members.
[factor.git] / 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 } }