mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +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>
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
|