p method in Ruby hard to search for
问题 I'm trying to find info on the p method in Ruby. It seems to produce internal info on the properties of a class but when I try to search for it I get every word that has the letter "p" in it. 回答1: Have you seen the api doc page? http://www.ruby-doc.org/core/Kernel.html#method-i-p There's also http://apidock.com/ruby/Kernel/p 回答2: Each method you can call "directly", e.g: print, p, abort, puts, readline, etc., is located in the Kernel class. (Kernel.methods - Object.methods).sort.each do