definition: |
text :: String -> Doc text s = Doc (Text s) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- The document `(text s)` contains the literal string `s`. --- The string shouldn't contain any newline ('\n') characters. --- If the string contains newline characters, --- the function `string` should be used. --- @param s - a string without newline (`'\n'`) characters --- @return a document which contains the literal string |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {Doc}} |
name: |
text |
precedence: |
no precedence defined |
result-values: |
{Doc} |
signature: |
String -> Text.PrettyImpl.Doc |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |