lispdoc - results for max |
(max number &rest more-numbers) | Function: Return the greatest of its arguments; among EQUALP greatest, return the first.
|
Example:(defun maybe-set-fill-pointer (array new-length) "If this is an array with a fill pointer, set it to new-length, if that is longer than the current length." (if (and (arrayp array) (array-has-fill-pointer-p array)) (setf (fill-pointer array) (max (fill-pointer array) new-length)))) | Mentioned in: CLtL2 - 12.3. Comparisons on Numbers CLtL2 - 28.1.7.4. Built-in Method Combination Types CLtL2 - 28.2. Functions in the Programmer Interface HyperSpec - Function MAX, MIN On Lisp - Applications for Macros On Lisp - Operations on Lists PCL - numeric comparisons PCL - other method combinations |
(hunchentoot:session-max-time object) | Undocumented
|
hunchentoot:*session-max-time* | Variable: The default time (in seconds) after which a session times out.
|
usocket:+max-datagram-packet-size+ | Variable: The theoretical maximum amount of data in a UDP datagram. The IPv4 UDP packets have a 16-bit length constraint, and IP+UDP header has 28-byte. IP_MAXPACKET = 65535, /* netinet/ip.h */ sizeof(struct ip) = 20, /* netinet/ip.h */ sizeof(struct udphdr) = 8, /* netinet/udp.h */ 65535 - 20 - 8 = 65507 (But for UDP broadcast, the maximum message size is limited by the MTU size of the underlying link)
|
(babel-encodings:enc-max-units-per-char object) | Undocumented
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |