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)
System.Int64.MaxValue. If you'll useint64as index, then you will be able to index up to 9007199254740991 elements. If this is bytes, then you will be able to use 8_388_607 TBytes - as much as 8 millions of regular notebooks have. You don't need this - JL0PD