package containers-data
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  A set of advanced datatypes for containers
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      v3.0.1.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        md5=438a7bbcb789e116eead04c8a59641f0
    
    
  sha512=b5551a9ebb9500e14482852c9294c9b4cc3df8153ba64b8e4c4de1dacbd0322ebe4a212316b308c94af562a40099c85b89a8415780cf4e2e0e519870f7342c1b
    
    
  doc/containers-data/CCKTree/index.html
Module CCKTreeSource
Lazy Tree Structure
This structure can be used to represent trees and directed graphs (as infinite trees) in a lazy fashion. Like CCKList, it is a structural type.
Basics
Fold on values in no specified order. May not terminate if the tree is infinite.
Graph Traversals
Build a set structure given a total ordering.
Depth-first traversal of the tree.
force t evaluates t completely and returns a regular tree structure.
Look for an element that maps to Some _.
Pretty-printing
Example (tree of calls for naive Fibonacci function):
  let mk_fib n =
    let rec fib' l r i =
      if i=n then r else fib' r (l+r) (i+1)
    in fib' 1 1 1;;
  let rec fib n = match n with
    | 0 | 1 -> CCKTree.singleton (`Cst n)
    | _ -> CCKTree.node2 (`Plus (mk_fib n)) (fib (n-1)) (fib (n-2));;
  let pp_node fmt = function
    | `Cst n -> Format.fprintf fmt "%d" n
    | `Plus n -> Format.fprintf fmt "%d" n;;
  Format.printf "%a@." (CCKTree.pp pp_node) (fib 8);;A pretty-printer using S-expressions and boxes to render the tree. Empty nodes are not rendered; sharing is ignored.
Pretty printing in the DOT (graphviz) format
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  On This Page