2015-08-13から1日間の記事一覧

Ruby の Enumerable#each_with_index を自前で実装してみた

Enumerable#each_with_index の実装がどうなっているのか知りたかったんですが、どうやら C で書かれているようなので自分で Ruby を使った実装を書いてみた。 module Enumerable def each_with_index2 &block if block_given? index = 0 each { |it| block.…