Angular HAL Client - v1.0.0-dev.7
    Preparing search index...

    Function del

    • Returns an RxJS operator to delete a resource identified by an Accessor or a Resource. It is equivalent to

      switchMap(x => of(undefined))
      

      if the stream value is null or undefined and to

      switchMap(x => x.delete())
      

      otherwise.

      Returns OperatorFunction<Accessor | Resource | null | undefined, void>

      a function that transforms the source Observable