Removed forgotten references to NTH.
This commit is contained in:
parent
07f56d8251
commit
1e1feb960b
|
@ -573,7 +573,7 @@ Here are some examples of \ex{awk} being used to process various types
|
|||
of input stream.
|
||||
|
||||
\begin{code}
|
||||
(define $ nth) ; Saves typing.
|
||||
(define $ list-ref) ; Saves typing.
|
||||
|
||||
;;; Print out the name and home-directory of everyone in /etc/passwd:
|
||||
(let ((read-passwd (field-reader (infix-splitter ":" 7))))
|
||||
|
|
|
@ -17,20 +17,6 @@
|
|||
A left shift is $j > 0$; a right shift is $j < 0$.
|
||||
\end{desc}
|
||||
|
||||
\section{List procedures}
|
||||
\dfn{nth}{list i}{object}{procedure \textbf{(obsolete)}}
|
||||
\begin{desc}
|
||||
Returns the $i^{\mathrm th}$ element of \var{list}.
|
||||
The first element (the car) is \ex{(nth \var{list} 0)},
|
||||
the second element is \ex{(nth \var{list} 1)}, and so on.
|
||||
|
||||
This procedure is provided as it is useful for accessing elements
|
||||
from the lists returned by the field-readers (chapter~\ref{chapt:fr-awk}).
|
||||
|
||||
The functionality of \ex{nth} is equivalent to that of \RnRS{}'s
|
||||
\ex{list-ref}. Therefore, \ex{nth} will go away in a future release.
|
||||
\end{desc}
|
||||
|
||||
\section{Password encryption}
|
||||
|
||||
\defun {crypt} {key salt} {encrypted value}
|
||||
|
|
Loading…
Reference in New Issue