Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
778 views

Overriding equals, hashCode and toString in a Clojure deftype

I'm trying to create a new type in Clojure using deftype to implement a two dimensional (x,y) coordinate, which implements a "Location" protocol. I'd also like to have this implement the standard ...
7
votes
1answer
144 views

How to achieve a recursive deftype

I'm curious as to how to do a Clojure deftype that contains a reference to itself, e.g. (deftype BinaryTree [^BinaryTree left ^BinaryTree right]) This doesn't work... however I see no intrinsic ...
7
votes
1answer
200 views

Using Clojure deftype as a parameterized function

I am trying to use clojure in a compiler and thus need to parameterize calls to deftype; however, I am having difficulty making the type hints carry through. Consider the following code: (defn ...
7
votes
1answer
970 views

When should I use deftype in Clojure?

Yesterday, Rich pulled the 'new' branch of Clojure into master. We are now embracing the beauty that is deftype and defprotocol. Of course, I, coming from Haskell, am very tempted to define types like ...
6
votes
1answer
503 views

How can I define a clojure type that implements the servlet interface?

I'm attempting to use deftype (from the bleeding-edge clojure 1.2 branch) to create a java class that implements the java Servlet interface. I would expect the code below to compile (even though it's ...
6
votes
1answer
317 views

Can I add fields to clojure types?

Clojure structs can be arbitrarily extended, adding new fields. Is it possible to extend types (created using deftype) in a similar way? EDIT: For the benefit future visitors, as Brian pointed out ...
5
votes
1answer
426 views

Mutable fields in Clojure deftype?

I'm trying out Clojure 1.2, specifically mutable fields which are supported in deftype according to the clojure.org documentation. But I can't get the set to work. What is the syntax for updating a ...
4
votes
1answer
171 views

Mutually referring deftypes in Clojure

I want to implement transient and persistent! in my Clojure deftype. As far as I can tell, this means having another deftype, TransientMyThing, implement the necessary methods. Okay so far, but those ...
4
votes
2answers
285 views

Nested types in clojure?

In clojure, how do I type type hint a type that I have created? (I want to nest the types.) e.g. I had thought that this would work: (deftype A [#^somePrimitive someField]) (deftype B ...
3
votes
2answers
180 views

What's a good toString method for a deftype'd object in clojure

(deftype Bag [state] Object (toString [bag] (str "Bag???" state))) I want the toString to look something like clojure.core=> (def b (Bag. {:apples 1 :bannanas 4})) ...
3
votes
2answers
629 views

Difference between deftype in Common Lisp and Scheme

I'm trying to translate some Common Lisp code into Scheme code. The Common Lisp code has a deftype. Are deftypes in Scheme the same as deftypes in Common Lisp? How do you translate a deftype in ...
2
votes
1answer
58 views

Interface which contains conj?

As an exercise, I am developing a data structure similar to Vector. I have implemented all interfaces which IPersistentVector extends, but I have not found the interface where 'conj' is defined. Which ...
2
votes
1answer
63 views

Clojure - deftype ignored - unable to resolve classname on tests

I'm testing deftype and defprotocol in Clojure, but I'm in a bit of a pickle. I'm using leiningen. My core file (src/core.clj) looks like this: (defprotocol Speaker (say [speaker message])) ...
2
votes
1answer
175 views

How do you use a type outside of its own namespace in clojure?

I have a project set up with leiningen called techne. I created a module called scrub with a type in it called Scrub and a function called foo. techne/scrub.clj: (ns techne.scrub) (deftype Scrub ...
0
votes
1answer
73 views

Clojure - How to refer deftype's variables in macros?

When I do (defmacro my-deftype [& code] `(deftype ~@code (toString [this] var1))) (my-deftype Qqq [var1] Object) it tells CompilerException ... No such var: mynamespace/var1 How to refer ...