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

# +(_:_:)

Generates a column by adding a value to each element in a column.

## Declaration

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

## Parameters

- `lhs`: A column type.
- `rhs`: A value of the same type as the column.

## Return Value

Return Value A new column.

## See Also

### Generating a Column by Combining a Value

- [+(_:_:)](tabulardata/columnprotocol/+(_:_:)-94kiv.md)
- [-(_:_:)](tabulardata/columnprotocol/-(_:_:)-4fynh.md)
- [-(_:_:)](tabulardata/columnprotocol/-(_:_:)-6up21.md)
- [*(_:_:)](tabulardata/columnprotocol/*(_:_:)-17vqd.md)
- [*(_:_:)](tabulardata/columnprotocol/*(_:_:)-3d6lu.md)
- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-4a632.md)
- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-7pe3t.md)
- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-6zigz.md)
- [/(_:_:)](tabulardata/columnprotocol/_(_:_:)-4iv15.md)
