CurryInfo: combinatorial-3.2.0 / Combinatorial.sizedSubset

definition: Info
 
sizedSubset     :: Int -> [a] -> [a]
sizedSubset c l = if c == 0 then [] else aux l
 where aux (x:xs) = x:sizedSubset (c-1) xs ? sizedSubset c xs
demand: Info
 no demanded arguments
deterministic: Info
 possibly non-deterministic operation
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> {:,[]}}
name: Info
 sizedSubset
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 Prelude.Int -> [a] -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term