comparison Lib/IMPL/lang.pm @ 164:eb3e9861a761

SQL traits in progress
author wizard
date Mon, 28 Mar 2011 01:36:24 +0400
parents
children 76515373dac0
comparison
equal deleted inserted replaced
163:6ce1f052b90a 164:eb3e9861a761
1 package IMPL::lang;
2 use strict;
3 use warnings;
4
5 use IMPL::base qw(Exporter);
6 use IMPL::_core::version;
7
8
9 our @EXPORT = qw(&is);
10
11 sub is($$) {
12 eval { $_[0]->isa($_[1]) }
13 }
14
15 1;