File: netaccel.mli

package info (click to toggle)
ocamlnet 4.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 51,764 kB
  • ctags: 16,446
  • sloc: ml: 148,419; ansic: 10,989; sh: 1,885; makefile: 1,355
file content (25 lines) | stat: -rw-r--r-- 725 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(* $Id$ *)

(** Accelerators for bytecode
 *
 * This module can be linked with executables to accelerate
 * certain functions. In particular, the following functions
 * will run faster:
 *
 * - {!Netaux.ArrayAux.int_blit}
 * - All conversion functions in {!Netconversion} when they
 *   must read an ISO-8859-1 or UTF-8 encoded string
 *
 * It is not recommended to install the accelerators for native
 * code, however (and with the distributed build rules, this
 * is not done).
 *
 * To link this module, you must name both [netaccel.cma] and
 * [netaccel_link.cmo] explicitly on the ocamlc command line
 * (after [netstring.cma]).
 * If you use [findlib], this is done automatically.
 *)

(**/**)

val init : unit -> unit