You can search for identifiers within the package.
in-package search v0.2.0
Create encodings that produce data of a fixed length when binary encoded. See the preamble for an explanation.
val string : int -> string encoding
Invalid_argument
if the argument is less or equal to zero.
val bytes : int -> Stdlib.Bytes.t encoding
val add_padding : 'a encoding -> int -> 'a encoding
add_padding e n is a padded version of the encoding e. In Binary, there are n null bytes (\000) added after the value encoded by e. In JSON, padding is ignored.
add_padding e n
e
n
\000
if n <= 0.
n <= 0