X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSafe%2FIsa.pm;h=651b6ac0e6cbf509755066ed709ed600d2bf5573;hb=d8e51091604eeec2780fb5a15a8bf4912d5b87ef;hp=e6457cf5f56d0b32cb8b19c9557cf265adcb0747;hpb=d3136db00d853c6eb60d203f4bc3133abeff6687;p=p5sagit%2FSafe-Isa.git diff --git a/lib/Safe/Isa.pm b/lib/Safe/Isa.pm index e6457cf..651b6ac 100644 --- a/lib/Safe/Isa.pm +++ b/lib/Safe/Isa.pm @@ -5,7 +5,7 @@ use warnings FATAL => 'all'; use Scalar::Util (); use Exporter 5.57 qw(import); -our $VERSION = '1.000008'; +our $VERSION = '1.000009'; our @EXPORT = qw($_call_if_object $_isa $_can $_does $_DOES $_call_if_can); @@ -15,14 +15,13 @@ our $_call_if_object = sub { # we gratuitously break modules like Scalar::Defer, which would be # un-perlish. return unless Scalar::Util::blessed($obj); - return $obj->isa(@_) if lc($method) eq 'does' and not $obj->can($method); return $obj->$method(@_); }; -our ($_isa, $_can, $_does, $_DOES) = map { +our ($_isa, $_can) = map { my $method = $_; sub { my $obj = shift; $obj->$_call_if_object($method => @_) } -} qw(isa can does DOES); +} qw(isa can); our $_call_if_can = sub { my ($obj, $method) = (shift, shift); @@ -30,6 +29,19 @@ our $_call_if_can = sub { return $obj->$method(@_); }; +our $_does = sub { + my $obj = shift; + $obj->$_call_if_can(does => @_); +}; + +our $_DOES = sub { + my $obj = shift; + return unless Scalar::Util::blessed($obj); + return $obj->DOES(@_) + if $obj->can('DOES'); + return $obj->isa(@_); +}; + 1; __END__ @@ -148,14 +160,17 @@ returns nothing. $maybe_an_object->$_does('Foo'); If called on an object, calls C on it and returns the result, otherwise -returns nothing. +returns nothing. If the C method does not exist, returns nothing rather +than failing. =head2 $_DOES $maybe_an_object->$_DOES('Foo'); If called on an object, calls C on it and returns the result, otherwise -returns nothing. +returns nothing. On perl versions prior to 5.10.0, the built in core C +method doesn't exist. If the method doesn't exist, this will fall back to +calling C just like the core C method. =head2 $_call_if_object