Consider the following code to demonstrate the question:
let sequence = Seq.initInfinite (fun _ -> "Element") Seq.iter (fun _ -> printf "Element no: ?") sequence
Is it in any way possible to get the current sequence number (e.g. its rank) to print?
Consider the following code to demonstrate the question:
let sequence = Seq.initInfinite (fun _ -> "Element") Seq.iter (fun _ -> printf "Element no: ?") sequence
Is it in any way possible to get the current sequence number (e.g. its rank) to print?
Use the iteri function:
let sequence = Seq.initInfinite (fun _ -> "Element")
sequence |> Seq.iteri (fun i _ -> printfn "Element no. %d" i)