diff --git a/src/aliases.rs b/src/aliases.rs index 7f897304b..7dc6fe8e4 100644 --- a/src/aliases.rs +++ b/src/aliases.rs @@ -195,3 +195,13 @@ pub type ArrayViewMutD<'a, A> = ArrayViewMut<'a, A, IxDyn>; pub type ArcArray1 = ArcArray; /// two-dimensional shared ownership array pub type ArcArray2 = ArcArray; +/// three-dimensional shared ownership array +pub type ArcArray3 = ArcArray; +/// four-dimensional shared ownership array +pub type ArcArray4 = ArcArray; +/// five-dimensional shared ownership array +pub type ArcArray5 = ArcArray; +/// six-dimensional shared ownership array +pub type ArcArray6 = ArcArray; +/// dynamic-dimensional shared ownership array +pub type ArcArrayD = ArcArray;