definition: |
joinModuleIdentifiers :: [String] -> ModuleIdent joinModuleIdentifiers = foldr1 combine where combine xs ys = xs ++ '.' : ys |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Join the components of a module identifier. For instance, --- `joinModuleIdentifiers ["Data", "Set"]` evaluates to `"Data.Set"`. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {foldr1}} |
name: |
joinModuleIdentifiers |
precedence: |
no precedence defined |
result-values: |
{foldr1} |
signature: |
[String] -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |