Gerhard Aigner

Results 31 comments of Gerhard Aigner
trafficstars

- Hidraw (This might be the difference, because in Julia I'm using the build that used libusb backend) - udev settings should be fine, as it works in Julia on...

`Deque` is as claimed faster than `Vector` for `pushfirst!` and even `push!`. For `sum` and simple `traverse` the compiler is smart enough to calculate the answer for `Vector` but not...

> minor feedback. I have given you merge rights so merge this when you are happy and mark this file done in the issue Thanks for the review. As soon...

This can be fixed by defining: ``` Base.IndexStyle(::Type{

On master a 0-capacity CircularBuffer can't be created: ```julia-repl julia> CircularBuffer(0) ERROR: ArgumentError: Value of 'first' must be inbounds of buffer Stacktrace: [1] CircularBuffer @ ~/.julia/dev/DataStructures/src/circular_buffer.jl:18 [inlined] [2] CircularBuffer{Any}(iter::Vector{Any}, capacity::Int64)...

Implemented in https://github.com/JuliaCollections/DataStructures.jl/pull/685

@peteristhegreat @mfalt Neither Julia 1.3 nor 1.5 are supported anymore. If you can reproduce the issue with Julia 1.6 or 1.9 with the latest DataStructures release 0.18.15 feel free to...

```julia DefaultDict{Int, Union{Missing,Int}}(missing, Dict(i => i for i in 1:3)) ``` now works (merged in https://github.com/JuliaCollections/DataStructures.jl/pull/730) Reading through the discussion in https://github.com/JuliaCollections/DataStructures.jl/pull/576 I think we shouldn't change to `get()`.

Already fixed by https://github.com/JuliaCollections/DataStructures.jl/pull/700