diff method

  1. @override
ArrayDeque<A> diff(
  1. RSeq<A> that
)
override

Returns a new collection with the difference of this and that, i.e. all elements that appear in only this collection.

Implementation

@override
ArrayDeque<A> diff(RSeq<A> that) => from(super.diff(that));