CurryInfo: base-3.4.0 / Prelude.words

definition: Info
 
words :: String -> [String]
words s = let s1 = dropWhile isSpace s
          in if s1 == "" then []
                         else let (w, s2) = break isSpace s1
                              in w : words s2
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Breaks a string into a list of words where the words are delimited by
white spaces.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> {:,[]}}
name: Info
 words
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 [Char] -> [[Char]]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term