Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use strict;
=head2 active_roles
Filter inactive roles.
=cut
sub active_roles {
shift->search( { active => 1 } );
}
1;