1Pervasives.LargeFile(3) OCaml library Pervasives.LargeFile(3)
2
3
4
6 Pervasives.LargeFile - Operations on large files.
7
9 Module Pervasives.LargeFile
10
12 Module LargeFile
13 : sig end
14
15
16 Operations on large files. This sub-module provides 64-bit variants of
17 the channel functions that manipulate file positions and file sizes.
18 By representing positions and sizes by 64-bit integers (type int64 )
19 instead of regular integers (type int ), these alternate functions
20 allow operating on files whose sizes are greater than max_int .
21
22
23
24
25
26
27
28 val seek_out : Pervasives.out_channel -> int64 -> unit
29
30
31
32
33 val pos_out : Pervasives.out_channel -> int64
34
35
36
37
38 val out_channel_length : Pervasives.out_channel -> int64
39
40
41
42
43 val seek_in : Pervasives.in_channel -> int64 -> unit
44
45
46
47
48 val pos_in : Pervasives.in_channel -> int64
49
50
51
52
53 val in_channel_length : Pervasives.in_channel -> int64
54
55
56
57
58
59
60OCamldoc 2017-03-22 Pervasives.LargeFile(3)