lispdoc - results for parameter |
parameter | |
| Mentioned in: HyperSpec - 3.4.1.3 A specifier for a rest parameter HyperSpec - 7.6.3 Agreement on Parameter Specializers and Qualifiers | |
parameters | |
| Mentioned in: HyperSpec - 1.4.4.20.2 Naming Conventions for Rest Parameters HyperSpec - 1.4.4.20.3 Requiring Non-Null Rest Parameters in the ``Syntax'' Section HyperSpec - 14.1.1.1 General Restrictions on Parameters that must be Trees HyperSpec - 14.1.2.3 General Restrictions on Parameters that must be Lists HyperSpec - 17.1.1 General Restrictions on Parameters that must be Sequences HyperSpec - 22.3.10.3 Additional FORMAT Parameters HyperSpec - 3.4.1.1 Specifiers for the required parameters HyperSpec - 3.4.1.2 Specifiers for optional parameters HyperSpec - 3.4.1.4 Specifiers for keyword parameters | |
(defparameter var val &optional (doc nil docp)) | Function: Define a parameter that is not normally changed by the program, but that may be changed without causing an error. Declare the variable special and sets its value to VAL, overwriting any previous value. The third argument is an optional documentation string for the parameter.
|
| Mentioned in: CLtL2 - 25.1.3. Compilation Environment CLtL2 - 5.3.2. Declaring Global Variables and Named Constants CLtL2 - 9.1. Declaration Syntax CLtL2 - 9.2. Declaration Specifiers HyperSpec - Macro DEFPARAMETER, DEFVAR On Lisp - Common Lisp Implementation PCL - constants PCL - dynamic aka special variables PCL - macros standard control constructs PCL - the heart of a spam filter PCL - the mighty loop PCL - the pretty printer backend Successful Lisp - chapter10 Successful Lisp - chapter28 Successful Lisp - global vars and consts Successful Lisp - special | |
(hunchentoot:parameter name &optional (request *request*)) | Function: Returns the GET or the POST parameter with name NAME (a string) - or NIL if there is none. If both a GET and a POST parameter with the same name exist the GET parameter is returned. Search is case-sensitive.
|
(rfc2388:find-parameter name params) | Function: Find header parameter by name from set of parameters.
|
(rfc2388:header-parameters structure) | Undocumented
|
(hunchentoot:get-parameter name &optional (request *request*)) | Function: Returns the GET parameter with name NAME (a string) - or NIL if there is none. Search is case-sensitive.
|
(hunchentoot:get-parameters object) | Undocumented
|
(hunchentoot:post-parameter name &optional (request *request*)) | Function: Returns the POST parameter with name NAME (a string) - or NIL if there is none. Search is case-sensitive.
|
(hunchentoot:post-parameters object) | Undocumented
|
(hunchentoot:get-parameters* &optional (request *request*)) | Function: Returns an alist of the GET parameters associated with the REQUEST object REQUEST.
|
(hunchentoot:parameter-error format-control &rest format-arguments) | Type: Signalled if a function was called with incosistent or illegal parameters.
Structure: Signalled if a function was called with incosistent or illegal parameters. Function: Signals an error of type PARAMETER-ERROR with the provided format control and arguments. |
(hunchentoot:post-parameters* &optional (request *request*)) | Function: Returns an alist of the POST parameters associated with the REQUEST object REQUEST.
|
lambda-parameters-limit | Variable: The exclusive upper bound on the number of parameters which may be specifed in a given lambda list. This is actually the limit on required and &OPTIONAL parameters. With &KEY and &AUX you can get more.
|
| Mentioned in: CLtL2 - 5.2.2. Lambda-Expressions CLtL2 - 7.10.1. Constructs for Handling Multiple Values CLtL2 - 7.3. Function Invocation HyperSpec - Constant Variable LAMBDA-PARAMETERS-LIMIT | |
(hunchentoot:recompute-request-parameters &key (request *request*) (external-format *hunchentoot-default-external-format*)) | Function: Recomputes the GET and POST parameters for the REQUEST object REQUEST. This only makes sense if you're switching external formats during the request.
|
hunchentoot:*methods-for-post-parameters* | Variable: A list of the request method types (as keywords) for which Hunchentoot will try to compute POST-PARAMETERS.
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |