To focus the search input from anywhere on the page, press the 'S' key.
in-package search v0.1.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Makes a buffered INPUT
module. Buffered input provide backtracking functionality in Reparse
for those input that doesn't support random seeking, for eg. Unix socket descriptors, Lwt input channels, Lwt streams, etc.
Parameters
module Input : BUFFERED_INPUT with type 'a promise = 'a Promise.t
Signature
type 'a promise = 'a Promise.t
Represents an input promise.
type input = Input.t
trim_buffer t ~pos
removes data from the input buffer up till pos
.
Note After the input buffer is trimmed the parser is unable to backtrack to pos
less than pos
.
get t ~pos ~len
returns `String s
where String.length s <= len
or `Eof
if EOI
is reached.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page