---
title: ">(_:_:)"
framework: createml
role: symbol
role_heading: Operator
path: "createml/mldatacolumn/_(_:_:)-g252"
---

# >(_:_:)

Creates a column of Booleans by testing whether the given value is greater than each element in the given column.

## Declaration

```swift
static func > (a: Element, b: MLDataColumn<Element>) -> MLDataColumn<Bool>
```

## Parameters

- `a`: A value of the same type as the elements of the column.
- `b`: A column.

## Return Value

Return Value A new column of Booleans.

## See Also

### Comparing columns

- [==(_:_:)](createml/mldatacolumn/==(_:_:).md)
- [!=(_:_:)](createml/mldatacolumn/!=(_:_:).md)
- [<(_:_:)](createml/mldatacolumn/_(_:_:)-81qel.md)
- [<=(_:_:)](createml/mldatacolumn/_=(_:_:)-8eq6v.md)
- [>=(_:_:)](createml/mldatacolumn/_=(_:_:)-64izf.md)
