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