Previous: Working With Lax Plists, Up: Property Lists [Contents][Index]
This function converts association list alist into the equivalent property-list form. The plist is returned. This converts from
((a . 1) (b . 2) (c . 3))
into
(a 1 b 2 c 3)
The original alist is not modified.
This function converts property list plist into the equivalent association-list form. The alist is returned. This converts from
(a 1 b 2 c 3)
into
((a . 1) (b . 2) (c . 3))
The original plist is not modified.
The following two functions are equivalent to the preceding two except that they destructively modify their arguments, using cons cells from the original list to form the new list rather than allocating new cons cells.
This function destructively converts association list alist into the equivalent property-list form. The plist is returned.
This function destructively converts property list plist into the equivalent association-list form. The alist is returned.