Drop, Take, dropRight, takeRight, a Scala language concept
Last updated
Scala's `drop` and `take` methods typically remove or select `n` items from a collection.
This allows for quick and easy collection manipulations.
The versions with `Right` act on the right side of the collection.