Perl function name clash
问题 I'm in a situation where a module I'm using has a function whose name is exactly the same as one in my own module. When I try to call the function in my module (OO Perl, so $self->function ) it's calling the function from the other module instead. I've already got around it by renaming my function but as a matter of interest, is there any way of explicitly calling the function from my module? edit: this is essentially what I'm doing package Provider::WTO; use base qw(Provider); # Provider