Module Pervasives.LargeFile


module LargeFile: sig  end
大きなファイルに対する操作です。 このサブモジュールは、ファイル位置やファイルサイズを扱うチャンネル関数の 64 ビット版を提供します。位置やサイズを通常の整数 (int 型) ではなく 64 ビット整数 (int64 型) で指定します。これらの関数を使うと。max_int より大きなサイズのファイルを処理することができます。

val seek_out : Pervasives.out_channel -> int64 -> unit
val pos_out : Pervasives.out_channel -> int64
val out_channel_length : Pervasives.out_channel -> int64
val seek_in : Pervasives.in_channel -> int64 -> unit
val pos_in : Pervasives.in_channel -> int64
val in_channel_length : Pervasives.in_channel -> int64