This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Support building nonxs extensions from cpan/ on Unix.
[perl5.git] / ext / Encode / Symbol / Symbol.pm
1 package Encode::Symbol;
2 use strict;
3 use warnings;
4 use Encode;
5 our $VERSION = do { my @r = ( q$Revision: 2.2 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
6
7 use XSLoader;
8 XSLoader::load( __PACKAGE__, $VERSION );
9
10 1;
11 __END__
12
13 =head1 NAME
14
15 Encode::Symbol - Symbol Encodings
16
17 =head1 SYNOPSIS
18
19     use Encode qw/encode decode/; 
20     $symbol  = encode("symbol", $utf8); # loads Encode::Symbol implicitly
21     $utf8 = decode("", $symbol);        # ditto
22
23 =head1 ABSTRACT
24
25 This module implements symbol and dingbats encodings.  Encodings
26 supported are as follows.   
27
28   Canonical   Alias             Description
29   --------------------------------------------------------------------
30   symbol
31   dingbats
32   AdobeZDingbat
33   AdobeSymbol
34   MacDingbats
35
36 =head1 DESCRIPTION
37
38 To find out how to use this module in detail, see L<Encode>.
39
40 =head1 SEE ALSO
41
42 L<Encode>
43
44 =cut