class RType::Function

Public Class Methods

match?(robj, type) click to toggle source
# File lib/r_type/type/function.rb, line 3
def self.match? robj, type
  type == 'function' || (type == 'standardGeneric' &&
                         Convert.call_R_without_convert(:is_function, robj))
end