package rpc_parallel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = [
  1. | `Dev_null
    (*

    Do not save the output anywhere.

    *)
  2. | `File_append of string
    (*

    Absolute path of a file to write to, creating the file if it does not already exist.

    *)
  3. | `File_truncate of string
    (*

    Absolute path of a file to write to, overwriting any existing file.

    *)
]

A specification for where to write outputs.

val sexp_of_t : t -> Sexplib0.Sexp.t
val t_of_sexp : Sexplib0.Sexp.t -> t
val __t_of_sexp__ : Sexplib0.Sexp.t -> t