mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-01 09:31:18 +00:00
Renamed to toRunes
This commit is contained in:
@@ -1260,7 +1260,7 @@ iterator runes*(s: string): Rune =
|
||||
fastRuneAt(s, i, result, true)
|
||||
yield result
|
||||
|
||||
proc runesIn*(s: string): seq[Rune] =
|
||||
proc toRunes*(s: string): seq[Rune] =
|
||||
## Obtain a sequence containing the Runes in `s`
|
||||
result = newSeq[Rune]()
|
||||
for r in s.runes:
|
||||
|
||||
Reference in New Issue
Block a user