ngx-mq
    Preparing search index...

    Function not

    • Negates a boolean signal.

      Useful for features that have no direct inverse helper, such as "devices without hover": not(hover()).

      Parameters

      • condition: Signal<boolean>

        The boolean signal to invert.

      Returns Signal<boolean>

      A Signal<boolean> that is true when condition is false, and vice versa.

      readonly isTouchLike = not(hover());
      

      and and or.