findSplit.findSplit

Undocumented in source. Be warned that the author may not have intended to support it.
  1. auto findSplit(Haystack haystack)
    template findSplit(needles...)
    @trusted
    findSplit
    (
    Haystack
    )
    (
    const scope return Haystack haystack
    )
    if (
    is(typeof(Haystack.init[0 .. 0])) &&
    is(typeof(Haystack.init[0]) : char)
    &&
    isASCII!(needles[0])
    )
    if (
    needles.length == 1 &&
    isExpressions!needles
    )
  2. auto findSplit(inout(T)[] haystack, const(T)[] needle)
  3. auto findSplit(inout(T)[] haystack, T needle)

Meta