DataStructures.jl icon indicating copy to clipboard operation
DataStructures.jl copied to clipboard

Julia implementation of Data structures

Results 149 DataStructures.jl issues
Sort by recently updated
recently updated
newest added

Following #800. Note that this PR splits Queue and Stack documentation pages into two separate pages.

From PkgEval (https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/c3bb6df_vs_599ecd8/DataStructures.1.6.0-DEV-fe2d71bc7f.build-3d16cc1ee71b7eb9.log). This is running with Julia and LLVM assertions on: ``` ... /home/pkgeval/.julia/packages/DataStructures/5hvIb/test/test_swiss_dict.jl ... Intrinsic name not mangled correctly for type arguments! Should be: llvm.prefetch.p0i8 void (i8*, i32,...

I am adding the segment tree data structure to the Datastructures.jl. Thanks for reviewing and I am hopeful this code will be accepted.

Something is wrong with the dependencies of the master branch. This error does not occur with the release branch. I am not familiar enough with the Pkg system to debug...

The previous owner of the domain for computist.xyz, for which the piece on Sparse int sets lived, no longer directs to the article.

As of #787, the iterators for the sorted containers have been unified into a single framework that handles all three containers, full containers or subranges, keys/values/both, tokens/semitokens, and forward/reverse. There...

The sorted container constructors for the case that the types are not explicitly specified copy the data three times. Jameson Nash here https://github.com/JuliaLang/julia/issues/46047 explained a better way to do this...

In PR #787, which was merged yesterday, the documentation for sorted containers is rewritten extensively using Documenter.jl. However, the documentation updates are not yet pushed here: https://juliacollections.github.io/DataStructures.jl/latest/sorted_containers/ and I don't...

Related to #443 In addition to the methods that have already been implemented for MutableLinkedList, it might also be helpful to have ways to mutate "the middle" of a list...