SourcePos is:exact
The abstract data type
SourcePos represents source positions.
It contains the name of the source (i.e. file name), a line number and
a column number.
SourcePos is an instance of the
Show,
Eq and
Ord class.
The data type
SourcePos represents source positions. It
contains the name of the source file, a line number, and a column
number. Source line and column positions change intensively during
parsing, so we need to make them strict to avoid memory leaks.
The abstract data type
SourcePos represents source positions.
It contains the name of the source (i.e. file name), a line number and
a column number.
SourcePos is an instance of the
Show,
Eq and
Ord class.
A source position containing filename, line, and column.