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
# https://gist.github.com/gists/2897543 | |
# NilEnumerator | |
# | |
# an enumerator that yields nil when it is finished. Only implements #next and | |
# #peak. Would only want to use this if your collection does NOT already include | |
# nils. | |
# | |
# Compare: | |
# | |
# # normal iteration requires catching StopIteration |