Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)