package ocamlformat-lib
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=dac77f0a957ae782bb4b869b07b9803a872a34f8c1eae8901b42d21b623c9db5
sha512=b4ae6fda3c28e91dc12411b577df7b216e9b1afe5887bcb9e89c158e1313dc92183c29ffb256f47f5c9384af3ac8c505ec76849b26ae950b82c9b4c21a460819
doc/ocamlformat-lib.odoc_parser/Ocamlformat_odoc_parser/Loc/index.html
Module Ocamlformat_odoc_parser.LocSource
Locations in files.
This module concerns locations in source files, both points indicating a specific character and spans between two points.
Basic types
A specific character
A range of characters between start and end_ in a particular file
span spans takes a list of spans and returns a single span starting at the start of the first span and ending at the end of the final span
This adjusts only the column number, implicitly assuming that the offset does not move the location across a newline character.
This adjusts only the column number, implicitly assuming that the offset does not move the location across a newline character.
Located values
Describes values located at a particular span
Constructor for with_location
Returns the location of a located value
Returns the value of a located value
Map over a located value without changing its location
same x y retuns the value y wrapped in a with_location whose location is that of x
spans_multiple_lines x checks to see whether x is located on a single line or whether it covers more than one.