---
title: next()
framework: swift
role: symbol
role_heading: Instance Method
path: swift/collectionofone/iterator/next()
---

# next()

Advances to the next element and returns it, or nil if no next element exists.

## Declaration

```swift
mutating func next() -> Element?
```

## Return Value

Return Value The next element in the underlying sequence, if a next element exists; otherwise, nil.

## Discussion

Discussion Once nil has been returned, all subsequent calls return nil.
