Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が理解している限り、Array クラスはすでに Enumerable モジュールに混在しています。
もしそうなら、なぜそこにないの[:example].nextですか?
[:example].next
なぜ私はそれを作る必要があるの[:example].to_enum.nextですか?
[:example].to_enum.next
to_enumとは関係なくEnumerable、 を返しますEnumerator。メソッドではなくメソッドであるため、メソッドArrayはありません。nextnextEnumeratorEnumerable
to_enum
Enumerable
Enumerator
Array
next