community
directory
books
authors
images
encyclopedia

Email:
Password:
Register

Knowledgerush Search

 

Google
  Web knowledgerush


Search for images of Setq


Message boards   Post comment

Setq

In the Common Lisp programming language, the special form setq kju: assigns values to variables.

(setq var1 form1 var2 form2 ...) is the simple variable assignment statement of Lisp. First form1 is evaluated and the result is stored in the variable var1, then form2 is evaluated and the result stored in var2, and so forth. setq may be used for assignment of both lexical and dynamic variables.

If any var refers to a binding made by symbol-macrolet, then that var is treated as if setf (not setq) had been used.

Syntax

setq {pair}* ⇒ result

pair::= var form

Arguments and Values

; var : a symbol naming a variable other than a constant variable.

; form : a form.

; result : the primary value of the last form, or nil if no pairs were supplied.

Examples

;; A simple use of SETQ to establish values for variables. (setq a 1 b 2 c 3) ⇒ 3 a ⇒ 1 b ⇒ 2 c ⇒ 3

;; Use of SETQ to update values by sequential assignment. (setq a (1+ b) b (1+ a) c (+ a b)) => 7 a ⇒ 3 b ⇒ 4 c ⇒ 7

;; This illustrates the use of SETQ on a symbol macro. (let ((x (list 10 20 30))) (symbol-macrolet ((y (car x)) (z (cadr x))) (setq y (1+ z) z (1+ y)) (list x y z))) ⇒ ((21 22 30) 21 22)

Side Effects

The primary value of each form is assigned to the corresponding var.

See Also

psetq, set, setf

 

Compose Your Message

Your Email Address or Pen Name (optional):
Subject:
Your Message:
 

 

 

 

 

 

This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Setq".

 

Contact UsPrivacy Statement & Terms of Use

 
Copyright © 1999-2003 Knowledgerush.com. All rights reserved.