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

# ints

A cloned data column of integers.

## Declaration

```swift
var ints: MLDataColumn<Int>? { get }
```

## Return Value

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

## Discussion

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

## See Also

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

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