skipOverBack

Skip over the ending portion of haystack that matches needle, or nothing upon no match.

  1. bool skipOverBack(Haystack haystack, Needle needle)
    bool
    skipOverBack
    (
    Haystack
    Needle
    )
    (
    scope ref Haystack haystack
    ,
    scope Needle needle
    )
    if (
    isBidirectionalRange!Haystack &&
    isBidirectionalRange!Needle
    &&
    is(typeof(haystack.back == needle.back))
    )
  2. bool skipOverBack(Haystack haystack, Needle needle)

See Also

std.algorithm.searching.skipOver.

Meta