~ubuntu-branches/ubuntu/trusty/menhir/trusty

« back to all changes in this revision

Viewing changes to option.mli

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-02-22 23:41:17 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090222234117-yxk115kvzv634utx
Tags: 20090204.dfsg-2
* New binary package libmenhir-ocaml-dev, Closes: #516134.
* Use dh-ocaml predefined variables.
* Use predefined variable OCAML_BEST (dh-ocaml >= 0.4).
* debian/svn-deblayout: remove no longer needed SVN setting

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
(**************************************************************************)
2
 
(*                                                                        *)
3
 
(*  Menhir                                                                *)
4
 
(*                                                                        *)
5
 
(*  Fran�ois Pottier and Yann R�gis-Gianas, INRIA Rocquencourt            *)
6
 
(*                                                                        *)
7
 
(*  Copyright 2005 Institut National de Recherche en Informatique et      *)
8
 
(*  en Automatique. All rights reserved. This file is distributed         *)
9
 
(*  under the terms of the Q Public License version 1.0, with the         *)
10
 
(*  change described in file LICENSE.                                     *)
11
 
(*                                                                        *)
12
 
(**************************************************************************)
13
 
 
14
 
val map: ('a -> 'b) -> 'a option -> 'b option
15
 
val iter: ('a -> unit) -> 'a option -> unit
16
 
val fold: ('a -> 'b -> 'b) -> 'a option -> 'b -> 'b