kip
Kday - functions to return the date of the first, last or nth day of the week on, nearest, before or after a given date
kday is a simple, no-dependencies library to calculate the date of the first, last or nth day of the week on, nearest, before or after a given date. The code is extracted from ex_cldr_calendars so has been in production for several years and therefore considered stable.
Functions
-
first_kday(date, k) - Return the date of the first
day_of_weekon or after the specifieddate. -
kday_after(date, k) - Return the date of the
day_of_weekafter the specifieddate. -
kday_before(date, k) - Return the date of the
day_of_weekbefore the specifieddate. -
kday_nearest(date, k) - Return the date of the
day_of_weeknearest the specifieddate. -
kday_on_or_after(date, k) - Return the date of the
day_of_weekon or after the specifieddate. -
kday_on_or_before(date, k) - Return the date of the
day_of_weekon or before the specifieddate. -
last_kday(date, k) - Return the date of the last
day_of_weekon or before the specifieddate. -
nth_kday(date, n, k) - Return the date of the
nthday_of_weekon or before/after the specifieddate.
Examples
Days of the week follow the elixir convention of 1 being Monday and 7 being Sunday.
# Memorial Day in the US
iex> Kday.last_kday(~D[2017-05-31], 1)
~D[2017-05-29]
iex> Kday.kday_nearest(~D[2016-02-29], 2)
~D[2016-03-01]
iex> Kday.kday_on_or_after(~D[2017-11-30], 1)
~D[2017-12-04]
First Post!
jc00ke
This is great, thanks for extracting! I wrote my own date_of_nth_weekday/3 a few years ago but it depends on Timex which is fine for that project but not ideal for others.
Popular in Announcing
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









