Returns the element at index ix as a Some. If ix is outside the range of this collection, None is returned.
ix
Option<A> lift(int ix) => Option.when(() => isDefinedAt(ix), () => this[ix]);