The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::Wrapper::Plus::Support::RangeSet - A set of ranges of supported things

VERSION

version 0.004011

METHODS

add_range_object

Appends $object to the items stash.

    $set->add_range_object( $object );

add_range

    $set->add_range( %params );

This is essentially shorthand for

    require Git::Wrapper::Plus::Support::Range;
    $set->add_range_object( Git::Wrapper::Plus::Support::Range->new( %params ) );

See ::Support::Range for details.

supports_version

    $set->supports_version( $gwp->versions );

Determines if the data based on items indicate that a thing is supported on the git versions described by the Versions object.

ATTRIBUTES

items

The series of ::Range objects that comprise the set.

AUTHOR

Kent Fredric <kentnl@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.

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