package file_path

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

Source file file_path_unix_async_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
(** Asynchronous I/O operations for [File_path] types. See [../../doc/file-path.mdx]. *)

open! Core
open! Async

module type S = sig
  include File_path_io.S with type 'a io := 'a Deferred.t (** @open *)
end

module type File_path_unix_async = sig
  module type S = S

  include S (** @open *)
end