Acme-CPANModules-Set

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    steps required beyond that are considered a bug and can be reported to
    me.

COPYRIGHT AND LICENSE
    This software is copyright (c) 2022 by perlancar <perlancar@cpan.org>.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-Set>

    When submitting a bug or request, please include a test-file or a patch
    to an existing test-file that illustrates the bug or desired feature.

lib/Acme/CPANModules/Set.pm  view on Meta::CPAN


=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-Set>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=cut

lib/Set/Light/_ModuleFeatures.pm  view on Meta::CPAN


use strict;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-03-18'; # DATE
our $DIST = 'Acme-CPANModules-Set'; # DIST
our $VERSION = '0.001'; # VERSION

our %FEATURES = (
    module_v => "1.0",
    features => {
        Set => {
            can_insert_value => 1,
            can_delete_value => 1,
            can_search_value => 1,
            can_count_values => 1,

            can_union_sets                => 0,
            can_intersect_sets            => 0,
            can_difference_sets           => 0,
            can_symmetric_difference_sets => 0,

            speed           => 'fast',
            memory_overhead => 'low',
            features        => 'few',
        },
    },
);

1;
# ABSTRACT: Features declaration for Set::Light

__END__

=pod

lib/Set/Light/_ModuleFeatures.pm  view on Meta::CPAN


=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-Set>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=cut

lib/Set/Tiny/_ModuleFeatures.pm  view on Meta::CPAN


use strict;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-03-18'; # DATE
our $DIST = 'Acme-CPANModules-Set'; # DIST
our $VERSION = '0.001'; # VERSION

our %FEATURES = (
    module_v => "1.0",
    features => {
        Set => {
            can_insert_value => 1,
            can_delete_value => 1,
            can_search_value => 1,
            can_count_values => 1,

            can_union_sets                => 1,
            can_intersect_sets            => 1,
            can_difference_sets           => 1,
            can_symmetric_difference_sets => 1,

            speed           => 'fast',
            memory_overhead => 'low',
            features        => 'medium',
        },
    },
);

1;
# ABSTRACT: Features declaration for Set::Tiny

__END__

=pod

lib/Set/Tiny/_ModuleFeatures.pm  view on Meta::CPAN


=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-Set>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=cut



( run in 0.327 second using v1.01-cache-2.11-cpan-a5abf4f5562 )