---
title: multiArrays
framework: createml
role: symbol
role_heading: Instance Property
path: createml/mluntypedcolumn/multiarrays
---

# multiArrays

A cloned data column of machine learning multi-arrays.

## Declaration

```swift
var multiArrays: MLDataColumn<MLDataValue.MultiArrayType>? { get }
```

## Return Value

Return Value A new data column if the underlying type of the column is MLDataValue.MultiArrayType; otherwise nil.

## Discussion

Discussion This property is functionally equivalent to passing MLDataValue.MultiArrayType .self to column(type:). Typically you ensure type is equal to MLDataValue.ValueType.multiArray before getting this property.

## See Also

### Exposing the underlying type to generate a data column

- [type](createml/mluntypedcolumn/type.md)
- [ints](createml/mluntypedcolumn/ints.md)
- [doubles](createml/mluntypedcolumn/doubles.md)
- [strings](createml/mluntypedcolumn/strings.md)
- [sequences](createml/mluntypedcolumn/sequences.md)
- [dictionaries](createml/mluntypedcolumn/dictionaries.md)
- [column(type:)](createml/mluntypedcolumn/column(type:).md)
