CurryInfo: coosy-3.1.0 / Observe.oTriple

definition:
oTriple :: (Data a, Data b, Data c) =>
           Observer a -> Observer b -> Observer c -> Observer (a,b,c)
oTriple observeA observeB observeC (x,y,z) =
  o3 observeA observeB observeC "(,,)" (\a b c -> (a,b,c)) x y z
demand:
argument 7
deterministic:
possibly non-deterministic operation
documentation:
-- An observer combinator for triples.
failfree:
<FAILING>
indeterministic:
might be indeterministic
infix:
no fixity defined
iotype:
{(_,_,_,_,_,_,{(,,)}) |-> {o3}}
name:
oTriple
precedence:
no precedence defined
result-values:
{o3}
signature:
(Prelude.Data a, Prelude.Data b, Prelude.Data c) => (a -> String -> Prelude.Int
-> [Prelude.Int] -> a) -> (b -> String -> Prelude.Int -> [Prelude.Int] -> b)
-> (c -> String -> Prelude.Int -> [Prelude.Int] -> c) -> (a, b, c) -> String
-> Prelude.Int -> [Prelude.Int] -> (a, b, c)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term