Skip to main content

reactiveNot

Alternative: not$$

Types

function reactiveNot(
subscribe: IObservable<boolean>,
): IObservable<boolean>

Definition

Creates an Observable which performs the boolean NOT operation (!) on the values sent by one Observable, and emits the result.

Diagram

OUTreactiveNot(observable)observableOUTreactiveNot(observable)observablefalsetruetruefalse

Example

Perform the boolean "NOT" of two Observables

const subscribe = reactiveNot(
single(true),
);

subscribe((value: boolean) => {
console.log(value);
});

Output:

false