definition:
|
getExportedFields :: [CTypeDecl] -> [String]
getExportedFields = map fldName . filter isExportedField . concatMap getFields
. concatMap typeCons
where
getFields (CCons _ _ _ ) = []
getFields (CRecord _ _ fs) = fs
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- extract the names of all exported fields
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {.._#lambda508}}
|
name:
|
getExportedFields
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
[AbstractCurry.Types.CTypeDecl] -> [String]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|