You can search for identifiers within the package.
in-package search v0.2.0
osnap
Spec.Result
type 'a t = {
printer : 'a printer;
encoding : 'a Data_encoding.t option;
}
val unit : unit t
unit t
unit
val bool : bool t
bool t
bool
val float : float t
float t
float
val int : int t
int t
int
val char : char t
char t
char
val string : string t
string t
string
val option : 'a t -> 'a option t
option t creates an option t for t
option t
t
val array : 'a t -> 'a array t
array t creates an array t for t
array t
val list : 'a t -> 'a list t
list t creates a list t for t
list t
val build : ?encoding:'a encoding -> 'a printer -> 'a t
build ?encoding printer builds an 'a result with optionally an encoding
build ?encoding printer
'a result