Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29cf682

Browse files
committed
Clarifications on the first(), next(), and previous() functions, based
on comments from Detlef Lannert <[email protected]>.
1 parent 8611921 commit 29cf682

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Doc/lib/libbsddb.tex

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,18 +95,19 @@ \subsection{Hash, BTree and Record Objects \label{bsddb-objects}}
9595

9696
\begin{methoddesc}{first}{}
9797
Set the cursor to the first item in the DB file and return it. The order of
98-
keys in the file is unspecified.
98+
keys in the file is unspecified, except in the case of B-Tree databases.
9999
\end{methoddesc}
100100

101101
\begin{methoddesc}{next}{}
102102
Set the cursor to the next item in the DB file and return it. The order of
103-
keys in the file is unspecified.
103+
keys in the file is unspecified, except in the case of B-Tree databases.
104104
\end{methoddesc}
105105

106106
\begin{methoddesc}{previous}{}
107107
Set the cursor to the first item in the DB file and return it. The
108-
order of keys in the file is unspecified. This is not supported on
109-
hashtable databases (those opened with \function{hashopen()}).
108+
order of keys in the file is unspecified, except in the case of B-Tree
109+
databases. This is not supported on hashtable databases (those opened
110+
with \function{hashopen()}).
110111
\end{methoddesc}
111112

112113
\begin{methoddesc}{last}{}

0 commit comments

Comments
 (0)