@rxjs-ninja/rxjs-array
Version:
Operators for RxJS for filtering with boolean logic
28 lines (27 loc) • 1.04 kB
TypeScript
/**
* @packageDocumentation
* @module Array
*/
import { OperatorFunction, Subscribable } from 'rxjs';
/**
* Returns an Observable that emits a boolean value if the source Observable Array or Set has equal non-duplicate
* content of the input Array or Set
*
* @category Query
*
* @remarks The source set (A) is equal in content to the input set (B) (`A == B`)
*
* @typeParam T The input type of the source Array or Set
*
* @param input The Array or Set to check if the set is equal
*
* @example Return if the source array is a subset of the input array
* ```ts
* const input = [ ['a', 'b', 'c'], ['a', 'c', 'b', 'a'], ['a', 'b', 'z', 'x' ] ];
* from(input).pipe(isEqualSet(['a', 'b', 'c'])).subscribe()
* ```
* Output: `true, true, false`
*
* @returns Observable that emits a boolean of the source array has equal content to the input array
*/
export declare function isEqualSet<T extends unknown>(input: Subscribable<Iterable<T>> | Iterable<T>): OperatorFunction<Iterable<T>, boolean>;