Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T12:25:01.000Z (8 months ago)
- Last Synced: 2024-10-19T05:17:56.499Z (2 months ago)
- Topics: arrays, data-structures, flat-arrays, julia, nested-arrays
- Language: Julia
- Homepage:
- Size: 728 KB
- Stars: 43
- Watchers: 4
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ArraysOfArrays.jl
[![Documentation for stable version](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaArrays.github.io/ArraysOfArrays.jl/stable)
[![Documentation for development version](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaArrays.github.io/ArraysOfArrays.jl/dev)
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md)
[![Build Status](https://github.com/JuliaArrays/ArraysOfArrays.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaArrays/ArraysOfArrays.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/JuliaArrays/ArraysOfArrays.jl/branch/main/graph/badge.svg)](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)