Disclaimer: Total F# Newbie question!

If I type the following into an F# file in Visual Studio

#light

let squares =
    seq { for x in 1 .. 10 -> x * x }

printf "%A" squares

and run F# interactive on it by highlighting and pressing Alt+Enter, the output in the interactive window is

> 
seq [1; 4; 9; 16; ...]
val squares : seq<int>

>

But I want to see the full sequence i.e.

> 
seq [1; 4; 9; 16; 25; 36; 49; 64; 81; 100]
val squares : seq<int>

>

Is this possible? I'm hoping that there is a setting for this that I've missed.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

'seq' is a lazily-evaluated construct; it could be infinite, which is why FSI only shows the first few values. If you want to see it all, an easy thing to do is convert to a list, e.g.

printf "%A" (squares |> Seq.to_list)
link|improve this answer
Thanks Brian, that makes total sense now. Is it possible to ask FSI to evaluate all values in the seq comprehension range (if that's the correct terminology)? – Russ Cam Oct 2 '09 at 11:18
3  
@Russ, that's effectively what turning it into a List will do... Otherwise you have to do Seq.iter (printfn "%A") squares – Benjol Oct 2 '09 at 11:40
I notice printfn "%A" [1 .. 2000] only shows the first 100 values. Benjol's solution will print the entire list. – Juliet Oct 2 '09 at 16:52
@Juliet - I thought that's what I saw yesterday when I was playing around. Sounds like iterating over the sequence is the best way to see the value range. I'm sure I'll have more F# questions shortly :) – Russ Cam Oct 2 '09 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.