Mention toSet in the docs of the set type (#21037)

This commit is contained in:
Xavier Noria
2022-12-08 10:58:00 +01:00
committed by GitHub
parent 696def2bf7
commit e669835665

View File

@@ -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:
================== ========================================================