~ubuntu-branches/ubuntu/trusty/ocamlbricks/trusty-proposed

« back to all changes in this revision

Viewing changes to STRUCTURES/forest.mli

  • Committer: Package Import Robot
  • Author(s): Lucas Nussbaum
  • Date: 2013-05-28 16:38:50 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20130528163850-njreq52k3sdi3szn
Tags: 0.90+bzr364.3-1
* New upstream snapshot. Should fix the build failures on
  non-native ocaml architectures.
* Add no-ocamlopt-arches.diff: work-around for partial upstream fix
  (see https://bugs.launchpad.net/ocamlbricks/+bug/1130098).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
type 'a t
27
27
 
28
 
type 'a tree = 'a * 'a t (** a tree is a root with the forest of its childs *)
29
 
type 'a leaf = 'a        (** a leaf is a tree without childs *)
 
28
type 'a tree = 'a * 'a t (** a tree is a root with the forest of its children *)
 
29
type 'a leaf = 'a        (** a leaf is a tree without children *)
30
30
 
31
31
val empty : 'a t
32
32