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
As the title suggests:
julia> first(permutations(first(combinations(1:2,0)))) 0-element Array{Any,1}
The text was updated successfully, but these errors were encountered:
Another small example:
While collect is type stable,
julia> collect(permutations(1:N,K))[1] 0-element Array{Int64,1}
first returns a Vector{Any}
julia> first(permutations(1:N,K)) 0-element Array{Any,1}
Sorry, something went wrong.
Here are the results of v0.6, it seems that the issue is fixed.
julia> first(combinations(1:2,0)) 0-element Array{Int64,1} julia> first(permutations(1:2,0)) 0-element Array{Int64,1} julia> first(permutations(first(combinations(1:2,0)))) 0-element Array{Int64,1}
No branches or pull requests
As the title suggests:
The text was updated successfully, but these errors were encountered: