ICalendar.Util.Deserialize.retrieve_params

You're seeing just the function retrieve_params, go back to ICalendar.Util.Deserialize module for more information.

This function extracts parameter data from a key in an iCalendar string.

iex> ICalendar.Util.Deserialize.retrieve_params(
...>   "DTSTART;TZID=America/Chicago")
["DTSTART", %{"TZID" => "America/Chicago"}]

It should be able to handle multiple parameters per key:

iex> ICalendar.Util.Deserialize.retrieve_params(
...>   "KEY;LOREM=ipsum;DOLOR=sit")
["KEY", %{"LOREM" => "ipsum", "DOLOR" => "sit"}]