1ExtUtils::Typemaps::BasUisce(r3)Contributed Perl DocumenEtxattUitoinls::Typemaps::Basic(3)
2
3
4
6 ExtUtils::Typemaps::Basic - A set of typemaps for simple types
7
9 use ExtUtils::Typemaps::Basic;
10 # First, read my own type maps:
11 my $private_map = ExtUtils::Typemaps->new(file => 'my.map');
12
13 # Then, get additional typemaps and merge them into mine
14 $private_map->merge(typemap => ExtUtils::Typemaps::Basic->new);
15
16 # Now, write the combined map to an output file
17 $private_map->write(file => 'typemap');
18
20 "ExtUtils::Typemaps::Basic" is an "ExtUtils::Typemaps" subclass that
21 provides a set of mappings for some basic integer, unsigned, and
22 floating point types that aren't in perl's builtin typemap.
23
25 These are the overridden methods:
26
27 new
28 Creates a new "ExtUtils::Typemaps::Basic" object. It acts as any other
29 "ExtUtils::Typemaps" object, except that it has the object maps
30 initialized.
31
33 ExtUtils::Typemaps, ExtUtils::Typemaps::Default
34
36 Steffen Mueller <smueller@cpan.org>
37
39 Copyright 2010, 2011, 2012, 2013 by Steffen Mueller
40
41 This program is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44
45
46perl v5.32.0 2020-07-28 ExtUtils::Typemaps::Basic(3)