views:

166

answers:

1

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?

+6  A: 

Use the iteri function:

let sequence = Seq.initInfinite (fun _ -> "Element")
sequence |> Seq.iteri (fun i _ -> printfn "Element no. %d" i)
cfern