---
title: "recurrences(of:in:)"
framework: foundation
role: symbol
role_heading: Instance Method
path: "foundation/calendar/recurrencerule/recurrences(of:in:)-9qfbm"
---

# recurrences(of:in:)

Find recurrences of the given date

## Declaration

```swift
func recurrences(of start: Date, in range: PartialRangeThrough<Date>) -> some Sendable & Sequence<Date>

```

## Parameters

- `start`: The date which defines the starting point for the recurrence rule.
- `range`: A range of dates which to search for recurrences.

## Return Value

Return Value A sequence of dates conforming to the recurrence rule, in the given range. An empty sequence if the rule doesn’t match any dates.

## Discussion

Discussion The calculations are implemented according to RFC-5545 and RFC-7529.
