definition: |
depthDiag :: SearchTree a -> [a] depthDiag t = [ x | Value x <- dfsDiag t ] |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- diagonalized depth first search. --- --- @param t search tree --- @return enumeration of values in given search tree --- |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
depthDiag |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Control.SearchTree.SearchTree a -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |