definition:
|
publicConsNames :: CurryProg -> [QName]
publicConsNames = map consName
. filter ((== Public) . consVis)
. constructors
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the names of all visible constructors in given Curry program.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {.._#lambda508}}
|
name:
|
publicConsNames
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
AbstractCurry.Types.CurryProg -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|