3

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?

1 Answers1

7

Use the iteri function:

let sequence = Seq.initInfinite (fun _ -> "Element")
sequence |> Seq.iteri (fun i _ -> printfn "Element no. %d" i) 
cfern
  • 5,956
  • 2
  • 25
  • 22