I am looking for a type similar to sequences in F# where indices could be big integers, rather that being restricted to int
. Does there exist anything like this?
By "big integer indices" I mean a type which allows for something equivalent to that:
let s = Seq.initInfinite (fun i -> i + 10I)