This website requires JavaScript.
Explore
Help
Register
Sign In
alexander
/
patterns
Archived
Watch
1
Star
0
Fork
You've already forked patterns
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
This repository has been archived on
2022-11-20
. You can view files and clone it, but cannot push or open issues or pull requests.
41ff6962c3
patterns
/
iterator
/
simpleiterator
/
iterator.d
10 lines
100 B
D
Raw
Blame
History
module
iterator
;
import
menuitem
;
interface
Iterator
{
bool
hasNext
(
)
;
MenuItem
next
(
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink