/** * @tsplus pipeable-index ImmutableArray * @tsplus static ImmutableArray.Aspects get * @tsplus pipeable ImmutableArray get */ export function get(index: number) { return (self: ImmutableArray): Maybe> => Maybe.fromNullable(self.array[index]) }