mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-17 08:34:20 +00:00
Mention toSet in the docs of the set type (#21037)
This commit is contained in:
@@ -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:
|
||||
|
||||
================== ========================================================
|
||||
|
||||
Reference in New Issue
Block a user