Is their a way to specifically check whether a subroutine exist in a child class even if it exist in parent class? For argument sake, the subroutine does not exist in child class but does exist in parent class.
The 'can' function does check for existence of subroutines. If the subroutine does not exist in child class but does in parent class it will return true. I was wondering if there is a function which will only do the look up in child class and return true or false if the subroutine does not exist in child class.
Thank You in Advance!