Chaining calls to the binary .. operator

You can use the ++ operator:

julia> using Dates

julia> ++(x, y, z) = Date(x, y, z)
++ (generic function with 1 method)

julia> 2022++1++1
2022-01-01
3 Likes