interface Filter {
    add(item): void;
    has(item): boolean;
    remove?(buf): boolean;
}

Implemented by

Methods

Methods