Keyword.fetch!/2
defmodule Keyword do
  def fetch!(keywords, key)
end
Fetches the value for a specific key and returns it in a tuple.
If key does not exist, a KeyError is raised.
defmodule Keyword do
  def fetch!(keywords, key)
end
Fetches the value for a specific key and returns it in a tuple.
If key does not exist, a KeyError is raised.