-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use searchsorted with Date ranges on 32-bit #30763
Labels
dates
Dates, times, and the Dates stdlib module
Comments
We really should have specialised methods for these in any case. |
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 6, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 6, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 6, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 6, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
Ref: #20839, where |
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 12, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 12, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are still restricted to Union{Int32,Int64} and must be the same
kmsquire
added a commit
to kmsquire/julia
that referenced
this issue
Apr 17, 2019
* Might also address JuliaLang#31618 * Types of start and stop indicies are restricted to Integer and must be the same type * Note that this file is compiled early during bootstrap, and `one` is not yet available
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The problem is that the
searchsorted
bisection expectsInt
, butlength
on date ranges returns anInt64
.The text was updated successfully, but these errors were encountered: