logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ExtUtils::Typemaps::STL - A set of useful typemaps for STL

Author

       Steffen Mueller <smueller@cpan.org>

Description

       "ExtUtils::Typemaps::STL" is an "ExtUtils::Typemaps" subclass that provides a few of default mappings for
       Standard Template Library types. These default mappings are currently defined as the combination of the
       mappings provided by the following typemap classes which are provided in this distribution:

       ExtUtils::Typemaps::STL::Vector, ExtUtils::Typemaps::STL::String, ExtUtils::Typemaps::STL::List

       More are to come, patches are welcome.

Methods

       These are the overridden methods:

   new
       Creates a new "ExtUtils::Typemaps::STL" object.

Name

       ExtUtils::Typemaps::STL - A set of useful typemaps for STL

See Also

       ExtUtils::Typemaps, ExtUtils::Typemaps::Default

       ExtUtils::Typemaps::STL::String, ExtUtils::Typemaps::STL::Vector ExtUtils::Typemaps::STL::List

Synopsis

         use ExtUtils::Typemaps::STL;
         # First, read my own type maps:
         my $private_map = ExtUtils::Typemaps->new(file => 'my.map');

         # Then, get the STL set and merge it into my maps
         my $map = ExtUtils::Typemaps::STL->new;
         $private_map->merge(typemap => $map);

         # Now, write the combined map to an output file
         $private_map->write(file => 'typemap');

See Also