import { Equivalence } from "@tsplus/stdlib/prelude/Equivalence/definition"; import { ImmutableArray } from "@tsplus/stdlib/collections/ImmutableArray/definition"; /** * Test if a value is a member of an array. Takes a `Equivalence` as a single * argument which returns the function to use to search for a value of type `A` * in an `ImmutableArray`. * @tsplus static ImmutableArray.Aspects elem * @tsplus pipeable ImmutableArray elem * @tsplus location "@tsplus/stdlib/collections/ImmutableArray/elem" */ export declare function elem(E: Equivalence, a: A): (self: ImmutableArray) => boolean; //# sourceMappingURL=elem.d.ts.map