---
title: "/(_:_:)"
framework: tabulardata
role: symbol
role_heading: Operator
path: "tabulardata/_(_:_:)-58kg6"
---

# /(_:_:)

Generates a floating-point column by dividing each element in an optional column type by the corresponding elements of a column type.

## Declaration

```swift
func / <L, R>(lhs: L, rhs: R) -> Column<R.Element> where L : OptionalColumnProtocol, R : ColumnProtocol, L.WrappedElement : FloatingPoint, L.WrappedElement == R.Element
```

## Parameters

- `lhs`: An optional column type.
- `rhs`: A column type.

## Return Value

Return Value A new column with the same type as the right column.

## See Also

### Generating a Column by Dividing Two Columns

- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-922ku.md)
- [/(_:_:)](tabulardata/_(_:_:)-9v3nw.md)
- [/(_:_:)](tabulardata/_(_:_:)-4igyw.md)
- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-2urf0.md)
- [/(_:_:)](tabulardata/_(_:_:)-4pr65.md)
