method
methods
Ruby latest stable (v1_9_3_392)
-
0 notes -
Class: Object
- 1_8_6_287 (0)
- 1_8_7_72 (0)
- 1_8_7_330 (0)
- 1_9_1_378 (-6)
- 1_9_2_180
- 1_9_3_125
- 1_9_3_392 (-3)
- What's this?
methods(p1)
public
Returns a list of the names of public and protected methods of obj. This will include all the methods accessible in obj’s ancestors.
class Klass def klass_method() end end k = Klass.new k.methods[0..9] #=> [:klass_method, :nil?, :===, # :==~, :!, :eql? # :hash, :<=>, :class, :singleton_class] k.methods.length #=> 57


