Set replaces the current iterator element with v. Set should panic if called before Next or after Next returns false.
(v T)
| 65 | // Set should panic if called before Next or after |
| 66 | // Next returns false. |
| 67 | Set(v T) |
| 68 | } |
| 69 | |
| 70 | // PrevIterator is an iterator with a Prev method. |
no outgoing calls