Changes for version 0.7.3 - 2020-05-23

  • Implement each_word() in terms of first_word() and next_word() to reduce code duplication.

Modules

Word lists
Wordlist that returns one, two (via implementing each_word())
Wordlist that returns one, two (via implementing each_word())
Wordlist that returns one, two (via implementing first_word(), next_word(), and reset_iterator())
Wordlist that contains "one" and "two"
Provide each_word(); relies on first_word(), next_word(), reset_iterator()
Provide first_word(), next_word(), reset_iterator(); relies on each_word()
A test role
The WordList methods