Function or value | Description |
Full Usage:
any_to_layout options value
Parameters:
FormatOptions
value : 'T
Returns: Layout
|
|
Full Usage:
any_to_string value
Parameters:
'T
Returns: string
|
Convert any value to a string using a standard formatter Data is typically formatted in a structured format, e.g. lists are formatted using the "[1;2]" notation. The details of the format are not specified and may change from version to version and according to the flags given to the F# compiler. The format is intended to be human-readable, not machine readable. If alternative generic formats are required you should develop your own formatter, using the code in the implementation of this file as a starting point. Data from other .NET languages is formatted using a virtual call to Object.ToString() on the boxed version of the input.
|
Full Usage:
layout_as_string options value
Parameters:
FormatOptions
value : 'T
Returns: string
|
|
Full Usage:
layout_to_string options layout
Parameters:
FormatOptions
layout : Layout
Returns: string
|
|
|
|
Full Usage:
output_layout options writer layout
Parameters:
FormatOptions
writer : TextWriter
layout : Layout
|
|
Full Usage:
squash_layout options layout
Parameters:
FormatOptions
layout : Layout
Returns: Layout
|
|