Group
Extension

Matches 1

CTKlib ( A/AB/ABALAMA/CTKlib-2.09.tar.gz, ABALAMA, 2022; MetaCPAN )
CTKlib/t/13-void.t ( view source; MetaCPAN )
ue');

$t = "";
ok(isnt_void($t),'null - void value');

$t = "0";
ok(isnt_void($t),'"0" - NOT void value');

$t = "0";
ok(isnt_void(\$t),'\\"0" - NOT void value');


$t = 0;
ok(isnt_void($t),'0 - NOT 
id($t),'[] - void value');

$t = [0];
ok(isnt_void($t),'[0] - NOT void value');

$t = [undef];
ok(is_void($t),'[undef] - void value');

$t = [undef,0];
ok(isnt_void($t),'[undef,0] - NOT void value');
k(is_void($t),'[{}] - void value');

$t = [{foo=>undef}];
ok(isnt_void($t),'[{foo=>undef}] - NOT void value');

$t = [{foo=>undef}];
ok(isnt_void(\$t),'\\[{foo=>undef}] - NOT void value');

$t = [[[[[

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.