Interface IContains<T>

Generic interface for collection types to check if a given value is part of the collection.

interface IContains<T> {
    contains(x): boolean;
}

Type Parameters

  • T

Methods

Methods

Generated using TypeDoc