/** * @tsplus getter List tail */ export function tail(self: List): Maybe> { return self.isNil() ? Maybe.none : Maybe.some(self.tail) }