The deftype tag has no wiki summary.
1
vote
1answer
27 views
Clojure — how to define public mutable members using deftype?
I've been trying to get http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm running in clojure.
I discovered that by omitting the @FXML annotation in the java version and making things ...
1
vote
0answers
56 views
On Clojure, what is the difference of deftype and defrecord and why are they necessary beyound maps? [duplicate]
Possible Duplicate:
Why Clojure has 5 ways to define a class instead of just one?
What are their differences and why are they necessary when there is already map?
2
votes
2answers
109 views
incomplete implementation of interfaces in clojure
Clojure allows deftypes that implement an interface incompletely, such as
(deftype Foo [x] clojure.lang.ISeq (next [this] x))
(Foo does not implement seq). Coming from the Pythonic land of ...
1
vote
2answers
153 views
deftype failing in lein repl what am I doing wrong?
Per http://www.assembla.com/spaces/clojure/wiki/Datatypes
I should be able to type the following into a lein reply:
(deftype Bar [a b c d e])
(def b (Bar 1 2 3 4 5))
However when I do I ...
2
votes
1answer
83 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
261 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]))
...
4
votes
1answer
249 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 ...
1
vote
1answer
114 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 ...
9
votes
1answer
196 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 ...
2
votes
1answer
462 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 ...
4
votes
2answers
360 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}))
...
7
votes
1answer
332 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
1k 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 ...
9
votes
1answer
1k 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 ...
6
votes
1answer
792 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
431 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 ...
11
votes
1answer
2k 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
2answers
379 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
864 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 ...