https://github.com/juliaarrays/arraysofarrays.jl
Efficient storage and handling of nested arrays in Julia
https://github.com/juliaarrays/arraysofarrays.jl
arrays data-structures flat-arrays julia nested-arrays
Last synced: 3 months ago
JSON representation
Efficient storage and handling of nested arrays in Julia
- Host: GitHub
- URL: https://github.com/juliaarrays/arraysofarrays.jl
- Owner: JuliaArrays
- License: other
- Created: 2018-02-23T18:30:13.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T12:25:01.000Z (about 1 year ago)
- Last Synced: 2025-04-06T10:41:47.284Z (3 months ago)
- Topics: arrays, data-structures, flat-arrays, julia, nested-arrays
- Language: Julia
- Homepage:
- Size: 728 KB
- Stars: 44
- Watchers: 3
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ArraysOfArrays.jl
[](https://JuliaArrays.github.io/ArraysOfArrays.jl/stable)
[](https://JuliaArrays.github.io/ArraysOfArrays.jl/dev)
[](LICENSE.md)
[](https://github.com/JuliaArrays/ArraysOfArrays.jl/actions?query=workflow%3ACI)
[](https://codecov.io/gh/JuliaArrays/ArraysOfArrays.jl)A Julia package for efficient storage and handling of nested arrays.
ArraysOfArrays provides two different types of nested arrays: `ArrayOfSimilarArrays` and `VectorOfArrays`.
An `ArrayOfSimilarArrays` offers a duality of view between representing the same data as both a flat multi-dimensional array and as an array of equally-sized arrays. A `VectorOfArrays` represents a vector of arrays of equal dimensionality but different size. Internally, both types store their data in flat arrays that are accessible to the user `flatview()`.## Documentation
* [Documentation for stable version](https://JuliaArrays.github.io/ArraysOfArrays.jl/stable)
* [Documentation for development version](https://JuliaArrays.github.io/ArraysOfArrays.jl/dev)