You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is part of a series of issues relating to invenia/Wrangling.jl#3
Will link others below for cross referencing.
and removing its type-piracy #35031 #35033
The text was updated successfully, but these errors were encountered:
For some functions, E.g.
in(item, collection)
where havein(collection) = item -> in(item, collection)
lessthan(a, b)
we havelessthan(b) = a -> lessthan(a, b)
isequal(a, b)
we haveisequal(b) = a -> isequal(a, b)
We have a whole bunch of these implemented via
Base.Fix2
.They are useful for using with
filter
.I propose we add a few more:
startswith(haystack, needle)
givingstartswith(needle) -> startswith(haystack, needle)
endswith(haystack, needle)
givingendswith(needle) -> endswith(haystack, needle)
This is part of a series of issues relating to invenia/Wrangling.jl#3
Will link others below for cross referencing.
and removing its type-piracy
#35031
#35033
The text was updated successfully, but these errors were encountered: