diff options
-rw-r--r-- | doc/sets_fragment.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/sets_fragment.txt b/doc/sets_fragment.txt index 4aac75191..fba98db2d 100644 --- a/doc/sets_fragment.txt +++ b/doc/sets_fragment.txt @@ -38,6 +38,14 @@ can also be used to include elements (and ranges of elements): # from '0' to '9' ``` +The module [`std/setutils`](https://nim-lang.org/docs/setutils.html) provides a way to initialize a set from an iterable: + +```nim +import std/setutils + +let uniqueChars = myString.toSet +``` + These operations are supported by sets: ================== ======================================================== |