Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the PDL CPAN distribution.

Report information
The Basics
Id: 59126
Status: resolved
Priority: 0/
Queue: PDL

People
Owner: Nobody in particular
Requestors: njahnke [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: 2.4.7



Subject: typo in docs for isempty
under the docs for isempty, there is this example: Show quoted text
perldl> $a=sequence(10) perldl> $i=which($a < -1) perldl> print "I found no matches!\n" if ($a->isempty);
on the third line, the isempty call should be to $i, not $a. this shows that there were no matches from which() as was apparently intended. print "I found no matches!\n" if ($i->isempty);
Fixed in PDL git repository which should be available in the next CPAN release of PDL. Thanks for reporting the problem. --Chris