API

Wrangling.contains_anyMethod
contains_any(haystack, needles)

Given a list of needles, this returns true if contains would return true for any needle in that list.

source
Wrangling.endswith_anyMethod
endswith_any(haystack, needles)

Given a list of needles, this returns true if endswith would return true for any needle in that list.

source
Wrangling.startswith_anyMethod
startswith_any(haystack, needles)

Given a list of needles, this returns true if startswith would return true for any needle in that list.

source