mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
* remove find optimization
close #19500
* save find to std
* add simple tests
* Apply suggestions from code review
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Co-authored-by: sandytypical <43030857+xflywind@users.noreply.github.com>
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
(cherry picked from commit 65c2518d5c)
7 lines
236 B
Nim
7 lines
236 B
Nim
import std/private/strimpl
|
|
|
|
doAssert find(cstring"Hello Nim", cstring"Nim") == 6
|
|
doAssert find(cstring"Hello Nim", cstring"N") == 6
|
|
doAssert find(cstring"Hello Nim", cstring"I") == -1
|
|
doAssert find(cstring"Hello Nim", cstring"O") == -1
|