Skip to content

Commit

Permalink
Remove method to get the inner Iterator for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Dec 17, 2021
1 parent a0be7d5 commit 5d26c3e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions src/ClosureIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@ public function current()
return $this->generator->current();
}

/**
* @return Iterator<TKey, T>
*/
public function getInnerIterator(): Iterator
{
return $this->generator;
}

/**
* @return TKey
*/
Expand Down
8 changes: 0 additions & 8 deletions src/IterableIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,6 @@ public function current()
return $this->iterator->current();
}

/**
* @return Iterator<TKey, T>
*/
public function getInnerIterator(): Iterator
{
return $this->iterator;
}

/**
* @return TKey
*/
Expand Down

0 comments on commit 5d26c3e

Please sign in to comment.