function rejectimport { reject } from "https://deno.land/x/rambda@9.4.1/index.d.ts"; reject<T>(predicate: Predicate<T>, list: T[]): T[]It has the opposite effect of R.filter. reject<T>(predicate: Predicate<T>): (list: T[]) => T[]reject<T>(predicate: Predicate<T>, obj: Dictionary<T>): Dictionary<T>reject<T, U>(predicate: Predicate<T>): (obj: Dictionary<T>) => Dictionary<T>It has the opposite effect of R.filter. Type ParametersTParameterspredicate: Predicate<T>list: T[]ReturnsT[]Type ParametersTParameterspredicate: Predicate<T>Returns(list: T[]) => T[]Type ParametersTParameterspredicate: Predicate<T>obj: Dictionary<T>ReturnsDictionary<T>Type ParametersTUParameterspredicate: Predicate<T>Returns(obj: Dictionary<T>) => Dictionary<T>