Tagged Questions

In the dialects of LISP (including Common Lisp, Scheme, Clojure) the cons procedure is the basic building block for constructing a memory object which holds two values (or pointers to values). The objects created by a call to cons are referred to as (cons) cells or as (cons) pairs.

learn more… | top users | synonyms

10
votes
3answers
88 views

Unexpected output with cons()

I am from an imperative background but these days trying my hands on LISP (Common LISP) I read here about cons that (cons x L): Given a LISP object x and a list L, evaluating (cons x L) ...
10
votes
5answers
546 views

common lisp cons creates a list from two symbols, clojure cons requires a seq to cons onto?

(Disclaimer - I'm aware of the significance of Seqs in Clojure) In common lisp the cons function can be used to combine two symbols into a list: (def s 'x) (def l 'y) (cons s l) In clojure - you ...
8
votes
1answer
102 views

Erlang: which pattern matching is more efficient (lists)?

I'm going through "Pragmatic Programming Erlang" where there is a function defined like this: split("\r\n\r\n" ++ T, L) -> {reverse(L), T}; split([H|T], L) -> split(T, [H|L]); split([], _) ...
5
votes
3answers
149 views

Cons of static utility classes in java?

What are the cons of creating static utility classes? The more I've made, the more I find them extremely useful. I understand that they lack object oriented design, but I still love them probably more ...
5
votes
4answers
479 views

32-bit or 64-bit application on 64-bit OS?

We are developing a swing application written by Java which requires only about 128MB memory, and in the short future I don't see it will require much more memory like 4GB. Previously we provide ...
5
votes
4answers
178 views

How to do ((A.B).(C.D)) in lisp

I'm trying to figure out how to do this using cons: ((A . B) . (C . D)) where (A . B) and (C . D) are in each cons cell I've tried doing this (cons (cons 'a 'b) (cons 'c 'd)) but it gives me this: ...
5
votes
2answers
554 views

Understanding infix method call and cons operator(::) in Scala

I'm quite new to Scala programming language, and was trying something out stucked in my mind while I was following the lecture notes at here. I think I couldn't really understand how cons operator ...
5
votes
2answers
399 views

What does [a|b|c] evaluate to in SWI-Prolog?

The pipe operator in prolog returns one or more atomic Heads and a Tail list. ?- [a,b,c] = [a,b|[c]]. true. Nesting multiple pipes in a single match can be done similar to this: ?- [a,b,c] = ...
3
votes
4answers
104 views

LISP cons in python

Is there an equivalent of cons in Python? (any version above 2.5) If so, is it built in? Or do I need easy_install do get a module?
3
votes
3answers
498 views

Scheme List Manipulation (Recursion)

The basic problem here is, when given a list, to return all elements of that list other than the last element. For example, given (a b c d) --> return (a b c). I essentially have the function, it's ...
2
votes
3answers
70 views

Are expressions such as (set! c (cons 3 c)) the way to add an item to a list?

Scheme has set-car! and set-cdr!, but no set-cons! . Are expressions such as (set! c (cons 3 c)) which places the element 3 on the list c, the proper/only/best/usual way to modify a list?
2
votes
3answers
38 views

delete-doubles function (scheme)

(define (delete-doubles lst) (cond ((null? lst) '()) ((null? (cdr lst)) (car lst)) ((equal? (car lst) (cadr lst)) (delete-doubles (cdr lst))) (else (cons (car lst) ...
2
votes
0answers
76 views

Does the Perl cons build tool skip targets containing dotnames?

I want to create a directory in the target area with one file. I'm observing that if any of the segments in the target path starts with a ".", cons quietly fails to create the target. Anyone know ...
2
votes
1answer
145 views

How do I implement a lazy “reducing map” function?

I am trying to implement a "reducing map" function. That is, it should return a sequence consisting of the result of applying f to the first 2 items of coll, followed by the result of applying f to ...
2
votes
3answers
225 views

Understanding pattern matching with cons operator

In "Programming F#" I came across a pattern-matching like this one (I simplified a bit): let rec len list = match list with | [] -> 0 | [_] -> 1 | head :: tail -> 1 + len tail;; ...
1
vote
0answers
91 views

Trying to learn how to program destructively in C [closed]

Possible Duplicate: Lists - C (Homework) I have to create a destructive version of two functions that handle an implemented structure. The structure is called ilist, where it has two ...
1
vote
1answer
64 views

Can cons find executables in my path?

I'm trying to debug a cons script, and the problem I'm having is that an executable in my own $PATH doesn't seem to be located. In short: Can cons find executables in my path? This might seem like a ...
1
vote
1answer
35 views

How can I force a file to be created using Cons, if nobody depends on it?

The project I'm using uses Cons instead of Make for one section, for reasons beyond my control (i.e. we inherited and there was never enough ROI to switch to Make). I just added a new rule to create ...
0
votes
4answers
185 views

c(a|d)+r macro in Racket

I wonder if it's possible to write a macro in Racket that would translate every form of shape (c(a|d)+r xs), where c(a|d)+r is a regular expression matching car, cdr, caar, cadr, ... etc, into the ...
0
votes
0answers
42 views

Scheme what is the syntax meaning of ' [closed]

Possible Duplicate: What is ' (apostrophe) in Lisp / Scheme? I am very confuse regarding to the syntax of scheme: list and cons sometime there is a ' in front character in the list ...
0
votes
3answers
106 views

RFP: why/why not outsouce early project development? [closed]

A small web development group (less than 15 people) I do some work for is looking at outsourcing some work. Through a series of random events they will soon be without a front end developer and a ...