Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
c3ec1280
Commit
c3ec1280
authored
Oct 21, 2011
by
Raymond Toy
Browse files
Clean up docstrings of MAP<foo> to match the argument names.
parent
7243adb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
code/list.lisp
View file @
c3ec1280
...
...
@@ -1056,27 +1056,32 @@
(
defun
mapc
(
function
list
&rest
more-lists
)
"Applies fn to successive elements of lists, returns its second argument."
"Applies Function to successive elements of each List, and returns
its second argument."
(
map1
function
(
cons
list
more-lists
)
nil
t
))
(
defun
mapcar
(
function
list
&rest
more-lists
)
"Applies fn to successive elements of list, returns list of results."
"Applies Function to successive elements of each List, and returns a
list of results."
(
map1
function
(
cons
list
more-lists
)
:list
t
))
(
defun
mapcan
(
function
list
&rest
more-lists
)
"Applies fn to successive elements of list, returns NCONC of results."
"Applies Function to successive elements of each List, and returns
NCONC of results."
(
map1
function
(
cons
list
more-lists
)
:nconc
t
))
(
defun
mapl
(
function
list
&rest
more-lists
)
"Applies
f
n to successive CDRs of
list,
returns ()."
"Applies
Functio
n to successive CDRs of
each List, and
returns ()."
(
map1
function
(
cons
list
more-lists
)
nil
nil
))
(
defun
maplist
(
function
list
&rest
more-lists
)
"Applies fn to successive CDRs of list, returns list of results."
"Applies Function to successive CDRs of each List, and returns list
of results."
(
map1
function
(
cons
list
more-lists
)
:list
nil
))
(
defun
mapcon
(
function
list
&rest
more-lists
)
"Applies fn to successive CDRs of lists, returns NCONC of results."
"Applies Function to successive CDRs of each List, and returns NCONC
of results."
(
map1
function
(
cons
list
more-lists
)
:nconc
nil
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment