definition: |
ppStringLit :: String -> Doc ppStringLit s = char '"' <> text (concatMap encChar s) <> char '"' where encChar c | c == '$' = ['\\','$'] | otherwise = [c] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Pretty print a Julia string literal. Encode backslashes |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
ppStringLit |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Text.PrettyImpl.Doc |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |