Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update type of GroupedSequenceIterator.keyIterator
Browse files Browse the repository at this point in the history
cysp committed Jan 27, 2019
1 parent c6c1a6e commit 40b8186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Apollo/Collections.swift
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ extension GroupedSequence: Sequence {
struct GroupedSequenceIterator<Key: Equatable, Value>: IteratorProtocol {
private var base: GroupedSequence<Key, Value>

private var keyIterator: EnumeratedIterator<IndexingIterator<Array<Key>>>
private var keyIterator: EnumeratedSequence<Array<Key>>.Iterator

init(base: GroupedSequence<Key, Value>) {
self.base = base

0 comments on commit 40b8186

Please sign in to comment.