package eio
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Effect-based direct-style IO API for OCaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
eio-1.4.tbz
sha256=ba11ad486f492130dbb486f2b3bdc4905643f10016806ddf86e9a34e4346aaa5
sha512=57ef2c137ccdc26d8029e636b6a4ee92da7c6b2f35954946bd56ca595d6947a8ec42f6f83f8552f73d6719e6ce2314cae2e2fad1686a387522935e6f90e9a8d9
doc/eio/Eio/File/Stat/index.html
Module File.StatSource
Portable file stats.
Source
type kind = [ | `Unknown| `Fifo| `Character_special| `Directory| `Block_device| `Regular_file| `Symbolic_link| `Socket
]Kind of file from st_mode. *
Source
type t = {dev : Int64.t;(*Device containing the filesystem where the file resides.
*)ino : Int64.t;(*Inode number.
*)kind : kind;(*File type.
*)perm : Unix_perm.t;(*Permissions (mode).
*)nlink : Int64.t;(*Number of hard links.
*)uid : Int64.t;(*User ID of owner.
*)gid : Int64.t;(*Group ID of owner.
*)rdev : Int64.t;(*Device's ID (if this is a device).
*)size : Optint.Int63.t;(*Total size in bytes.
*)blksize : Int64.t;(*Preferred block size for efficient filesystem I/O.
*)blocks : Int64.t;(*Number of 512-byte blocks allocated (disk usage is
*)blocks * 512).atime : float;(*Last access time.
*)mtime : float;(*Last modification time.
*)ctime : float;(*Creation time.
*)
}Like stat(2).
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>