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 unbuffered INPUT
module. Unbuffered input doesn't buffer any input since it natively supports random access and thus backtracking functionality is in-built to the input itself.
Parameters
module Input : UNBUFFERED_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