CLDR-Number

 view release on metacpan or  search on metacpan

lib/CLDR/Number/Constant.pm  view on Meta::CPAN

package CLDR::Number::Constant;

use v5.8.1;
use utf8;
use strict;
use warnings;
use parent 'Exporter';

# This module does not have a publicly supported interface and may change in
# backward incompatible ways in the future.

our $VERSION = '0.19';

our @EXPORT_OK = qw( $N $M $P $C $Q );

# private-use characters as placeholders
# $N: formatted number
# $M: minus sign
# $P: percent sign
# $C: currency sign
# $Q: escaped single quote

our ($N, $M, $P, $C, $Q) = map { chr } 0xF8F0 .. 0xF8F4;

1;



( run in 0.370 second using v1.01-cache-2.11-cpan-39bf76dae61 )