---
title: "+(_:_:)"
framework: tabulardata
role: symbol
role_heading: Operator
path: "tabulardata/columnprotocol/+(_:_:)-yc11"
---

# +(_:_:)

Generates a column by adding each element in a column type to the corresponding elements of another.

## Declaration

```swift
static func + (lhs: Self, rhs: Self) -> Column<Self.Element>
```

## Parameters

- `lhs`: A column type.
- `rhs`: Another column type.

## Return Value

Return Value A new column.

## See Also

### Generating a Column by Adding Two Columns

- [+(_:_:)](tabulardata/+(_:_:)-1i7oh.md)
- [+(_:_:)](tabulardata/+(_:_:)-3exmp.md)
