\HeaderA{maxA}{A filter function to filter according to the maximum.}{maxA}
\keyword{manip}{maxA}
\begin{Description}\relax
\code{maxA} returns a function with the parameter \code{A} bound.
The returned function evaluates to \code{TRUE} if any element of its
argument is larger than \code{A}.
\end{Description}
\begin{Usage}
\begin{verbatim}
maxA(A=75, na.rm=TRUE)
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{A}] The value that at least one element must exceed. 
\item[\code{na.rm}] If \code{TRUE} then \code{NA}'s are removed. 
\end{ldescription}
\end{Arguments}
\begin{Value}
\code{maxA} returns a function with an environment containing a binding
for \code{A}.
\end{Value}
\begin{Author}\relax
R. Gentleman
\end{Author}
\begin{SeeAlso}\relax
\code{\LinkA{pOverA}{pOverA}}
\end{SeeAlso}
\begin{Examples}
\begin{ExampleCode}
   ff <- maxA(30)
   ff(1:10)
   ff(28:31)
\end{ExampleCode}
\end{Examples}


