indexOfNone

Undocumented in source. Be warned that the author may not have intended to support it.
  1. ptrdiff_t indexOfNone(const(Char)[] haystack, const(R2)[] needles, size_t startIdx, CaseSensitive cs)
  2. ptrdiff_t indexOfNone(const(Char)[] haystack, const(R2)[] needles, CaseSensitive cs)
    @safe pure
    ptrdiff_t
    indexOfNone
    (
    Char
    R2
    )
    (
    const(Char)[] haystack
    ,
    const(R2)[] needles
    ,
    CaseSensitive cs = CaseSensitive.yes
    )
    if (
    isSomeChar!Char &&
    isSomeChar!R2
    &&
    is(typeof(binaryFun!"a == b"(haystack.front, needles.front)))
    )

Meta