methods(all=true)
Returns the methods available to this delegate object as the union of this object’s and __getobj__ methods.
# File lib/delegate.rb, line 110 def methods(all=true) __getobj__.methods(all) | super end