Re: RFC: API to access Unicode db files

[email protected] (Zefram) Sun, 24 Jul 2011 11:13:24 +0100
Newsgroups perl.unicode,perl.perl5.porters
Message-ID <[email protected]>
Karl Williamson wrote:
> prop_invmap("Numeric_Value", \@numerics_ranges, \@numerics_maps);

Looks fine to me, except for the convention for returning the arrays.
It would be neater to return a list of items rather than modify arrays
in place:

  ($status, $ranges, $maps) = prop_invmap("Numeric_Value");

-zefram