Suppose I have a list in sml which is very big then sml shows a few of the entries and then starts showing # character.
Could someone tell me how could I view the whole list?
|
Suppose I have a list in sml which is very big then sml shows a few of the entries and then starts showing # character. Could someone tell me how could I view the whole list? |
|||||||||
|
|
Assuming this is SML/NJ you could use The following are a snippet from the documentation of the Control.Print structure:
Thus for example we can change how many elements of a list we wan't to be shown in the REPL, by changing the
Note that for strings and data structures, the ellipsis is written as a hash '#' instead. This is for example seen with the below string. Note the '#' at the end of the
And lastly, an example of how this is seen in nested data structures:
The two suggested solutions will of cause print the entire list no matter how long it is. |
||||
|
|
|
You could do something like this:
An example of its use:
If you want to automatically do it, I doubt you can. If I recall correctly, the pretty printers are implementation specific, and most likely do not allow a pretty-printers to be installed for polymorphic types. |
|||
|
|
|
Shorter version of Sabastian P.'s code:
|
|||
|
|