Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-11-10から1日間の記事一覧

Ruby | Range | exclude_end?

概要 Range#exclude_end? -> bool 詳細 範囲オブジェクトが終端を含まないとき真を返却 サンプルコード require 'tbpgr_utils' bulk_puts_eval binding, <<-EOS (2..5).exclude_end? (2...5).exclude_end? Range.new(2, 5).exclude_end? Range.new(2, 5, fal…