Commit 29cf682b authored by Fred Drake's avatar Fred Drake

Clarifications on the first(), next(), and previous() functions, based

on comments from Detlef Lannert <lannert@lannert.rz.uni-duesseldorf.de>.
parent 86119212
...@@ -95,18 +95,19 @@ Set the cursor to the item indicated by the key and return it. ...@@ -95,18 +95,19 @@ Set the cursor to the item indicated by the key and return it.
\begin{methoddesc}{first}{} \begin{methoddesc}{first}{}
Set the cursor to the first item in the DB file and return it. The order of Set the cursor to the first item in the DB file and return it. The order of
keys in the file is unspecified. keys in the file is unspecified, except in the case of B-Tree databases.
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{next}{} \begin{methoddesc}{next}{}
Set the cursor to the next item in the DB file and return it. The order of Set the cursor to the next item in the DB file and return it. The order of
keys in the file is unspecified. keys in the file is unspecified, except in the case of B-Tree databases.
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{previous}{} \begin{methoddesc}{previous}{}
Set the cursor to the first item in the DB file and return it. The Set the cursor to the first item in the DB file and return it. The
order of keys in the file is unspecified. This is not supported on order of keys in the file is unspecified, except in the case of B-Tree
hashtable databases (those opened with \function{hashopen()}). databases. This is not supported on hashtable databases (those opened
with \function{hashopen()}).
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{last}{} \begin{methoddesc}{last}{}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment