Popularity
2.1
Stable
Activity
0.0
Stable
1
2
2
Monthly Downloads: 3
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Time
Latest version: v0.1.1
rrule alternatives and similar packages
Based on the "Time" category.
Alternatively, view rrule alternatives based on common mentions on social networks and blogs.
-
fixed-timestep
Pure Haskell library to run an action repeatedly, a specific amount of times per second.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of rrule or a related project?
README
rrule
Recurrence rule parser and formatter
fromText
parses from a recurrence rule Text
to the RRule
type
> let rule = fromJust $ fromText "RRULE:FREQ=MONTHLY;INTERVAL=1;BYMONTHDAY=1"
> rule
RRule {prefix = True, frequency = Just Monthly, byMonthDay = Just (1 :| []), ... }
toText
formats an RRule
to a recurrence rule Text
> toText rule
"RRULE:FREQ=MONTHLY;INTERVAL=1;BYMONTHDAY=1"
description
gives a description of what an RRule
means, in English
> description rule
"every month on the 1st day of the month"