API
Wrangling.contains_any
Wrangling.contains_any
Wrangling.endswith_any
Wrangling.endswith_any
Wrangling.startswith_any
Wrangling.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) -> Function
Curried 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) -> Function
Curried 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) -> Function
Curried form of startswith_any(haystack, needles)