
4.7.8 The ValuePrinter structure
Shell.Options.ValuePrinter
val maximumDepth: int option
maximumDepth option is an integer determining the maximum depth at which to print nested sequences. Elements deeper than this are elided. The default value is 7.
maximumDepth to 2:
MLWorks> val b = [ [["H"]], [["C"]] ]; val b : string list list list = [[["H"]], [["C"]]] MLWorks> set (maximumDepth, 2); val it : unit = () MLWorks> val b = [ [["H"]], [["C"]] ]; val b : string list list list [[...], [...]] MLWorks>

Generated with Harlequin WebMaker