Tbpgr Blog

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

2014-07-20から1日間の記事一覧

Ruby | Module | include?

概要 include?(mod) -> bool 詳細 self かその親クラス / 親モジュールがモジュール mod を インクルードしていれば true を返却。 サンプルコード require 'tbpgr_utils' module Hogeable;end class Hoge include Hogeable end class Hige end bulk_puts_ev…