View Source RRulex.Parser (RRulex v0.1.0)
Parses an RRULE from the (iCalendar RFC-2445)[https://www.ietf.org/rfc/rfc2445.txt] a into RRulex%{}
Link to this section Summary
Functions
Parses RRULE RFC-2445 string into a usable struct.
Link to this section Functions
Parses RRULE RFC-2445 string into a usable struct.
examples
Examples
iex> RRulex.parse("FREQ=DAILY;COUNT=5")
%RRulex{
:frequency => :daily,
:count => 5
}