how do I get the nth element of a sequence ? `mySequence.take(n + 1).last()` doesnt feel right to me
l
how do I get the nth element of a sequence ?
mySequence.take(n + 1).last()
doesnt feel right to me
a
elementAt(n)
l
thanks