[][src]Module jlrs::array

Support for n-dimensional arrays and their dimensions.

Structs

Array

An n-dimensional array whose contents have been copied from Julia to Rust. You can create this struct by calling Value::try_unbox. In order to unbox arrays that contain bools or chars, you can unbox them as Array<i8> and Array<u32> respectively. The data has a column-major layout.

Enums

Dimensions

The dimensions of an n-dimensional array.