~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to stdlib/camlinternalLazy.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2009-02-22 08:49:13 UTC
  • mfrom: (12.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090222084913-3i0uw2bhd0lgw0ok
* Uploading to unstable
* debian/control: bump dh-ocaml to (>= 0.4) to avoid buggy ocamlinit.mk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(***********************************************************************)
 
2
(*                                                                     *)
 
3
(*                           Objective Caml                            *)
 
4
(*                                                                     *)
 
5
(*            Damien Doligez, projet Para, INRIA Rocquencourt          *)
 
6
(*                                                                     *)
 
7
(*  Copyright 1997 Institut National de Recherche en Informatique et   *)
 
8
(*  en Automatique.  All rights reserved.  This file is distributed    *)
 
9
(*  under the terms of the GNU Library General Public License, with    *)
 
10
(*  the special exception on linking described in file ../LICENSE.     *)
 
11
(*                                                                     *)
 
12
(***********************************************************************)
 
13
 
 
14
(* $Id: camlinternalLazy.mli,v 1.1 2008/08/01 16:57:10 mauny Exp $ *)
 
15
 
 
16
(* Internals of forcing lazy values *)
 
17
 
 
18
exception Undefined;;
 
19
 
 
20
val force_lazy_block : 'a lazy_t -> 'a ;;
 
21
 
 
22
val force_val_lazy_block : 'a lazy_t -> 'a ;;
 
23
 
 
24
val force : 'a lazy_t -> 'a ;;
 
25
val force_val : 'a lazy_t -> 'a ;;