API
Wrangling.contains_anyWrangling.contains_anyWrangling.endswith_anyWrangling.endswith_anyWrangling.startswith_anyWrangling.startswith_any
Wrangling.contains_any — Methodcontains_any(haystack, needles)Given a list of needles, this returns true if contains would return true for any needle in that list.
Wrangling.contains_any — Methodcontains_any(needles) -> FunctionCurried form of contains_any(haystack, needles)
Wrangling.endswith_any — Methodendswith_any(haystack, needles)Given a list of needles, this returns true if endswith would return true for any needle in that list.
Wrangling.endswith_any — Methodendswith_any(needles) -> FunctionCurried form of endswith_any(haystack, needles)
Wrangling.startswith_any — Methodstartswith_any(haystack, needles)Given a list of needles, this returns true if startswith would return true for any needle in that list.
Wrangling.startswith_any — Methodstartswith_any(needles) -> FunctionCurried form of startswith_any(haystack, needles)