/**
 * Function type for predicate operations
 */
export type Predicate<E> = (e: E) => boolean;
