R/date-methods.R
is_eom.Rd
This checks whether the dates provided are the last day of a month.
dates
is_eom(dates)
a vector of dates.
a logical vector
library("lubridate") is_eom(ymd(20110228)) # TRUE#> [1] TRUEis_eom(ymd(20120229)) # TRUE#> [1] TRUE