package ocaml-base-compiler
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  Official release 5.2.1
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      ocaml-5.2.1.tar.gz
    
    
        
    
  
  
  
    
  
        sha256=2d0f8090951a97a2c0e5b8a11e90096c0e1791d2e471e4a67f87e3b974044cd0
    
    
  doc/unix/Unix/LargeFile/index.html
Module Unix.LargeFile
File operations on large files. This sub-module provides 64-bit variants of the functions lseek (for positioning a file descriptor), truncate and ftruncate (for changing the size of a file), and stat, lstat and fstat (for obtaining information on files). These alternate functions represent positions and sizes by 64-bit integers (type int64) instead of regular integers (type int), thus allowing operating on files whose sizes are greater than max_int.
val lseek : file_descr -> int64 -> seek_command -> int64See lseek.
val ftruncate : file_descr -> int64 -> unitSee ftruncate.
type stats = {- st_dev : int;(*- Device number *)
- st_ino : int;(*- Inode number *)
- st_kind : file_kind;(*- Kind of the file *)
- st_perm : file_perm;(*- Access rights *)
- st_nlink : int;(*- Number of links *)
- st_uid : int;(*- User id of the owner *)
- st_gid : int;(*- Group ID of the file's group *)
- st_rdev : int;(*- Device ID (if special file) *)
- st_size : int64;(*- Size in bytes *)
- st_atime : float;(*- Last access time *)
- st_mtime : float;(*- Last modification time *)
- st_ctime : float;(*- Last status change time *)
}val stat : string -> statsval lstat : string -> statsval fstat : file_descr -> stats sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >