Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my @a2 = @{ $c->bbox('FOO') || [ 1,2,3 ] };
    print(Dumper(\@a2));          # 1,2,3
    
  2. or download this
    my $rv = $c->bbox('FOO');
    print(Dumper($rv));           # undef