We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
limits(x, y)
Something like this doesn't work, for no other reason than too specific dispatching:
julia> using CellListMap, StaticArrays julia> x = [[0.0, 0.0]]; y = [SVector(0.0, 0.0)]; julia> limits(x, y) ERROR: MethodError: no method matching limits(::Vector{Vector{Float64}}, ::Vector{SVector{2, Float64}}) Closest candidates are: limits(::AbstractVector{<:AbstractVector}) @ CellListMap ~/.julia/dev/CellListMap/src/CellOperations.jl:296 limits(::T, ::T) where T<:(AbstractVector{<:AbstractVector}) @ CellListMap ~/.julia/dev/CellListMap/src/CellOperations.jl:315
The text was updated successfully, but these errors were encountered:
limits
available in version 0.8.17
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Something like this doesn't work, for no other reason than too specific dispatching:
The text was updated successfully, but these errors were encountered: