Есть ли способ получить документацию, отображаемую в html здесь
прямо с утопа.
Я могу получить тип , используя
utop # open Core;;
─( 10:41:50 )─< command 4 >─────────────────────────────────────────────────────────────────────────{ counter: 0 }─
utop # #typeof "In_channel.input_char";;
val Core.In_channel.input_char : Core.In_channel.t -> Base.char Base.option
─( 10:41:54 )─< command 5 >─────────────────────────────────────────────────────────────────────────{ counter: 0 }─
или
utop # #show In_channel.input_char;;
val input_char : in_channel -> char option
─( 10:43:00 )─< command 7 >────────────────────────────────────────────────────────────{ counter: 0 }─
utop #
но документ богаче
val input_char : t ‑> Stdio__.Import.char Stdio__.Import.option
Read one character from the given input channel.
Return None if there are no more characters to read.