pryでメソッドや、クラス、モジュールの定義を確認する
pryにはshew-docというメソッドがある。
show-doc = メソッドや、クラス、モジュールの定義をpry上で直接確認できるコマンドです。
setクラスの実装を見てみましょう。
[1] pry(main)> require "set"
=> true
[2] pry(main)> show-source Set#add
From: /usr/lib/ruby/2.3.0/set.rb @ line 312:
Owner: Set
Visibility: public
Number of lines: 4
def add(o)
@hash[o] = true
self
end
[3] pry(main)> show-source Set
From: /usr/lib/ruby/2.3.0/set.rb @ line 69:
Class name: Set
Number of lines: 492
class Set
include Enumerable
# Creates a new set containing the given objects.
def self.
new(ary)
end
# Creates a new set containing the elements of the given enumerable
# object.
#
# If a block is given, the elements of enum are preprocessed by the
# given block.
def initialize(enum = nil, &block) # :yields: o
@hash ||= Hash.new(false)
enum.nil? and return
参考 パーフェクトRuby
良書です。
Author And Source
この問題について(pryでメソッドや、クラス、モジュールの定義を確認する), 我々は、より多くの情報をここで見つけました https://qiita.com/kaba/items/4d4d9892c043378cfde1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .