-module(fp_gl@predicate). -compile(no_auto_import). -export(['not'/1]). -spec 'not'(fun((ELD) -> boolean())) -> fun((ELD) -> boolean()). 'not'(Predicate) -> fun(A) -> not Predicate(A) end.