/(_:_:)
Generates an integer column by dividing each element in a column type by the corresponding elements of an optional column type.
Declaration
func / <L, R>(lhs: L, rhs: R) -> Column<L.Element> where L : ColumnProtocol, R : OptionalColumnProtocol, L.Element : BinaryInteger, L.Element == R.WrappedElementParameters
- lhs:
A column type.
- rhs:
An optional column type.
Return Value
A new column with the same type as the left column.