Created
January 6, 2010 19:25
-
-
Save nilium/270551 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Strict | |
| Type AbstractEnumerator Abstract | |
| Method NextObject:Object() Abstract | |
| Method HasNext:Int() Abstract | |
| End Type | |
| Type List | |
| Method ObjectEnumerator:AbstractEnumerator() | |
| Type Enumerator Extends AbstractEnumerator | |
| Method NextObject:Object() | |
| Return Null | |
| End Method | |
| Method HasNext:Int() | |
| Return False | |
| End Method | |
| End Type | |
| Return New Enumerator | |
| End Method | |
| End Type | |
| For Local i:Object = EachIn New List | |
| Next |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment