Keyword.reject/2
defmodule Keyword do
def reject(keywords, fun)
end
Returns only those elements for which fun
does not return a truthy value.
defmodule Keyword do
def reject(keywords, fun)
end
Returns only those elements for which fun
does not return a truthy value.