Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarified the cons/conj list return type #20

Merged
merged 1 commit into from Jan 5, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions article.html
Expand Up @@ -1397,9 +1397,10 @@ <h3><a name="Lists">Lists</a></h3>
</pre>
</div>
<p>
Both the <code>conj</code> and <code>cons</code> functions
create a new list
that contains additional items added to the front.
While the <code>conj</code> function will create a new
list, the <code>cons</code> function will create a new
sequence (more about that in the Sequences chapter). In each
case the new item(s) are added to the front.
The <code>remove</code> function creates a new list containing
only the items for which a predicate function returns false.
For example:
Expand Down