chain method

Tracer<E> chain(
  1. Tracer<E> other
)

Returns a Tracer that chains this Tracer with another Tracer.

The returned Tracer will call the onVisit and onSkip methods of this Tracer and the other Tracer in the order they are provided.

Implementation

Tracer<E> chain(Tracer<E> other) => _ChainedTracer(this, other);