CurryInfo: base-3.4.0 / Data.List.findIndices

definition: Info
 
findIndices             :: (a -> Bool) -> [a] -> [Int]
findIndices p xs         = [ i | (x,i) <- zip xs [0..], p x ]
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Returns the list of indices of list elements satisfying a predicate.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 findIndices
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> Prelude.Bool) -> [a] -> [Prelude.Int]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms