tail property
Set<E> ?
get
tail
Removes the first element, keeps the "tail".
1, 2, 3.tail returns 2, 3.
1.tail returns [].
[].tail returns null.
Implementation
Set<E>? get tail => h.tailIterable(this)?.toSet();