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