/* * Copyright (c) 2021-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ declare class TreeSet { /** * A constructor used to create a TreeSet object. * @param comparator (Optional) User-defined comparison functions * @param firstValue (Optional) previous element * @param secondValue (Optional) next element * @throws { BusinessError } 10200012 - The TreeSet's constructor cannot be directly invoked. * @throws { BusinessError } 401 - The type of parameters are invalid. * @since 8 * @syscap SystemCapability.Utils.Lang */ constructor(comparator?: (firstValue: T, secondValue: T) => boolean) /** * Gets the element number of the TreeSet. * @since 8 * @syscap SystemCapability.Utils.Lang */ length: number; /** * Returns whether the Set object contains elements * @returns the boolean type * @throws { BusinessError } 10200011 - The isEmpty method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ isEmpty(): boolean; /** * Returns whether the Set object contain s the elements * @param value need to determine whether to include the element * @returns the boolean type * @throws { BusinessError } 10200011 - The has method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ has(value: T): boolean; /** * If the set does not contain the element, the specified element is added * @param value Added element * @returns the boolean type(Is there contain this element) * @throws { BusinessError } 401 - The type of parameters are invalid. * @throws { BusinessError } 10200011 - The add method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ add(value: T): boolean; /** * Remove a specified element from a Set object * @param value Target to be deleted * @returns the boolean type(Is there contain this element) * @throws { BusinessError } 10200011 - The remove method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ remove(value: T): boolean; /** * Clears all element groups in a set * @throws { BusinessError } 10200011 - The clear method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ clear(): void; /** * Gets the first elements in a set * @returns value or undefined * @throws { BusinessError } 10200011 - The getFirstValue method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ getFirstValue(): T; /** * Gets the last elements in a set * @returns value or undefined * @throws { BusinessError } 10200011 - The getLastValue method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ getLastValue(): T; /** * Returns the greatest element smaller than or equal to the specified key * if the key does not exist, undefined is returned * @param key Objective of comparison * @returns key or undefined * @throws { BusinessError } 10200011 - The getLowerValue method cannot be bound. * @throws { BusinessError } 401 - The type of parameters are invalid. * @since 8 * @syscap SystemCapability.Utils.Lang */ getLowerValue(key: T): T; /** * Returns the least element greater than or equal to the specified key * if the key does not exist, undefined is returned * @param key Objective of comparison * @returns key or undefined * @throws { BusinessError } 10200011 - The getHigherValue method cannot be bound. * @throws { BusinessError } 401 - The type of parameters are invalid. * @since 8 * @syscap SystemCapability.Utils.Lang */ getHigherValue(key: T): T; /** * Return and delete the first element, returns undefined if tree set is empty * @returns first value or undefined * @throws { BusinessError } 10200011 - The popFirst method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ popFirst(): T; /** * Return and delete the last element, returns undefined if tree set is empty * @returns last value or undefined * @throws { BusinessError } 10200011 - The popLast method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ popLast(): T; /** * Executes a provided function once for each value in the Set object. * @throws { BusinessError } 10200011 - The forEach method cannot be bound. * @throws { BusinessError } 401 - The type of parameters are invalid. * @since 8 * @syscap SystemCapability.Utils.Lang */ forEach(callbackFn: (value?: T, key?: T, set?: TreeSet) => void, thisArg?: Object): void; /** * Returns a new Iterator object that contains the values contained in this set * @throws { BusinessError } 10200011 - The values method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ values(): IterableIterator; /** * Returns a new Iterator object that contains the [key, value] pairs for each element in the Set object in insertion order * @throws { BusinessError } 10200011 - The entries method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ entries(): IterableIterator<[T, T]>; /** * returns an ES6 iterator.Each item of the iterator is a Javascript Object * @throws { BusinessError } 10200011 - The Symbol.iterator method cannot be bound. * @since 8 * @syscap SystemCapability.Utils.Lang */ [Symbol.iterator](): IterableIterator; } export default TreeSet;