package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

The subset of fields of Unix.stats used by this module.

By requiring only a subset of fields here, we allow the caller to memoize only the fields that really matter.

type t = {
  1. st_kind : Unix.file_kind;
  2. st_perm : Unix.file_perm;
  3. st_size : int;
  4. st_mtime : float;
  5. st_ctime : float;
}
val of_unix_stats : Unix.stats -> t