tapEach<U> method

  1. @override
ArrayDeque<A> tapEach<U>(
  1. Function1<A, U> f
)
override

Applies f to each element in this collection, discarding any results and returns this collection.

Implementation

@override
ArrayDeque<A> tapEach<U>(Function1<A, U> f) => from(super.tapEach(f));