dropRight method

  1. @override
IndexedSeq<A> dropRight(
  1. int n
)
override

Return a new collection with the last n elements removed.

Implementation

@override
IndexedSeq<A> dropRight(int n) => iseqviews.DropRight(this, n);