|
definition: |
printStringAt :: Span -> String -> PutExact
printStringAt sp s =
liftEPS $ withSrcInfoPoints (SpanInfo sp [sp]) [s] eps
where
EPSM (_, eps) = do
liftEPS $ fillUpS (start sp) -- fill space before string
empty -- no other keywords to print
liftEPS $ fillUpS (end sp) -- print string, add trailing space
|
|
demand: |
no demanded arguments |
|
deterministic: |
deterministic operation |
|
failfree: |
<FAILING> |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_,_) |-> _}
|
|
name: |
printStringAt |
|
precedence: |
no precedence defined |
|
result-values: |
_ |
|
signature: |
Curry.Span.Span -> String -> EPSM () |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
possibly non-reducible on same data term |