JuliaLang/julia

Dates round/floor/ceil arguments switched

Open

#47 786 ouverte le 2 déc. 2022

Voir sur GitHub
 (7 commentaires) (4 réactions) (0 assignés)Julia (5 773 forks)batch import
datesgood first issuehelp wanted

Métriques du dépôt

Stars
 (48 709 stars)
Métriques de merge PR
 (Merge moyen 20j 6h) (157 PRs mergées en 30 j)

Description

round(T, x) is the normal API, but in Dates.jl the arguments are reversed.

julia> ceil(today(), Week)
2022-12-05

julia> ceil(Week, today())
ERROR: MethodError: no method matching ceil(::Type{Week}, ::Date)

Guide contributeur