tail property

Option<Iterable<T>> get tail

Returns all the of elements except the first.

Implementation

Option<Iterable<T>> get tail => isEmpty ? kNone : some(skip(1));