---
title: "+(_:_:)"
framework: foundation
role: symbol
role_heading: Operator
path: "foundation/date/+(_:_:)"
---

# +(_:_:)

Returns a date with a specified amount of time added to it.

## Declaration

```swift
static func + (lhs: Date, rhs: TimeInterval) -> Date
```

## Parameters

- `lhs`: A date.
- `rhs`: A doc://com.apple.foundation/documentation/Foundation/TimeInterval to add to the date.

## Return Value

Return Value A date with a specified amount of time added to it.

## See Also

### Adding or Subtracting a Time Interval

- [addTimeInterval(_:)](foundation/date/addtimeinterval(_:).md)
- [addingTimeInterval(_:)](foundation/date/addingtimeinterval(_:).md)
- [advanced(by:)](foundation/date/advanced(by:).md)
- [+=(_:_:)](foundation/date/+=(_:_:).md)
- [-(_:_:)](foundation/date/-(_:_:).md)
- [-=(_:_:)](foundation/date/-=(_:_:).md)
