+(_:_:)
Generates a column by adding each element in an optional column type to the corresponding elements of a column type.
Declaration
func + <L, R>(lhs: L, rhs: R) -> Column<R.Element> where L : OptionalColumnProtocol, R : ColumnProtocol, L.WrappedElement : AdditiveArithmetic, L.WrappedElement == R.ElementParameters
- lhs:
An optional column type.
- rhs:
A column type.
Return Value
A new column with the same type as the right column.