From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Logfile::EPrints::Filter - base class for filters

SYNOPSIS

A minimal filter that removes all abstract requests:

our @ISA = qw( Logfile::EPrints::Filter );
sub abstract {}
1;