package comby

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type single_source =
  1. | Path of string
  2. | String of string
type batch_input = [
  1. | `Paths of string list
  2. | `Zip of string * Camlzip.Zip.entry list
]
type t = [
  1. | batch_input
  2. | `String of string
]
val show_input_kind : single_source -> string