A position is a Lisp object representing the location of one of the characters in the contents of a buffer (see section Buffers). Since Jade stores buffer contents as an array of lines, two index values are needed to reference a single character. A position object contains two integers; the column and line numbers of the character, both these values count upwards from zero (i.e. the first character in a buffer has line and column numbers of zero).
Position objects have no read syntax; they print as,
#<pos column line>
t when its argument is a position object.
Go to the first, previous, next, last section, table of contents.