Get a last item of an array or a last character of a string.
opt([1, 2, 3]).lastIn() // Some(3)opt([]).lastIn() // Noneopt(null).lastIn() // Noneopt('Palico').lastIn() // Some('o')
last
Get a last item of an array or a last character of a string.