Go to the first, previous, next, last section, table of contents.


methodsMatch?

Function: methodsMatch? { method1 method2 -> tOrNil order }
file: job.t
package: muf
status: alpha

The methodsMatch? function returns a nil tOrNil value if the two methods differ in number of required arguments, or if they have generic functions.

Otherwise, it returns t for tOrNil and returns -1 for order if method1 is more specific, 0 if they have identical signatures, 1 if method1 is less specific, and nil if they are unordered (for example, :eql 1 vs :eql 'a').


Go to the first, previous, next, last section, table of contents.