CurryInfo: currybrowse-3.0.0 / BrowserGUI.getTreesValue

definition:
getTreesValue :: Int -> [Tree a] -> a
getTreesValue _ [] = error "getTreesValue: nothing selected" -- should not occur
getTreesValue n (Leaf _ v : trees) =
  if n==0 then v
          else getTreesValue (n-1) trees
getTreesValue n (Node t v subtrees : trees) =
  if n==0 then v
          else let l = length (tree2strings 0 (Node t v subtrees)) in
               if n < l
               then getTreesValue (n-1) subtrees
               else getTreesValue (n-l) trees
demand:
argument 2
deterministic:
deterministic operation
documentation:
-- get selected value in the tree list:
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{:}) |-> _}
name:
getTreesValue
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Int -> [Tree a] -> a
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term