Jaccard index: Difference between revisions

Content added Content deleted
(Add emacs lisp)
m (→‎{{header|Wren}}: Wren-trait -> Wren-iterate)
Line 654: Line 654:
=={{header|Wren}}==
=={{header|Wren}}==
{{libheader|Wren-set}}
{{libheader|Wren-set}}
{{libheader|Wren-trait}}
{{libheader|Wren-iterate}}
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
Note that the Set object in the above module is implemented as a Map and consequently the iteration order (and the order in which elements are printed) is undefined.
Note that the Set object in the above module is implemented as a Map and consequently the iteration order (and the order in which elements are printed) is undefined.
<syntaxhighlight lang="ecmascript">import "./set" for Set
<syntaxhighlight lang="ecmascript">import "./set" for Set
import "./trait" for Indexed
import "./iterate" for Indexed
import "./fmt" for Fmt
import "./fmt" for Fmt