Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
275 views

Clojure multimethods vs. protocols

I'm a Clojure novice and was looking for some concrete examples of when to use protocols and when to use multimethods. I know that protocols are generally geared towards creating a type hierarchy and ...
8
votes
1answer
237 views

Scheme -> Clojure: multimethods with predicates in the methods?

I'm converting some Scheme code to Clojure. The original uses a dispatching pattern that's very similar to multimethods, but with an inverted approach to the matching predicates. For example, there a ...
4
votes
1answer
78 views

Looping through args of macro

I am trying to write a macro in Clojure that allows for evaluation of a series of simple "def" expressions. I am a n00b when it comes to macros. The idea is that (my-defs y1 1 y2 "taco") ...
4
votes
3answers
326 views

Are clojure multimethods slow by nature

I was looking at the clojure.core function re-groups: (defn re-groups [^java.util.regex.Matcher m] (let [gc (. m (groupCount))] (if (zero? gc) (. m (group)) (loop [ret [] c ...
4
votes
3answers
287 views

Defining Clojure multimethods

I have the following in one namespace say shapes: (derive ::rect ::shape) (derive ::square ::rect) Now executing the following in the shapes namespace: (isa? ::square ::shape) returns true. But ...
2
votes
1answer
59 views

Reloading multimethods via Slime

I'm having trouble reloading multimethods when developing in Emacs with a Slime repl. Redefining the defmethod forms works fine, but if I change the dispatch function I don't seem to be able to ...
2
votes
1answer
187 views

Can I use Clojure's derive to create a hierarchy of my defrecord class types?

I would like to do something like: (defrecord Base []) (defrecord Person []) (defrecord Animal []) (derive Person Base) (derive Animal Base) (isa? Animal Person) Is this possible? Update: I've ...
2
votes
3answers
165 views

Can I use Clojure multimethods only on Java classes?

I am a bit confused about whether I can only use clojure multimethods on clojure structures represented by Java classes, or can I base multimethods to dispatch on structs or other properties?
1
vote
2answers
140 views

Is a self-recursive clojure multimethod a good design for a nested classification problem?

I have a large sequence of data-maps and each map needs to be classified in a nested fashion. i.e. a given item may be an A or a B (as determined by a function), if it is a B then it may be a C or a ...
1
vote
3answers
220 views

why there are no multimethods in c++? [closed]

I read many article about how to implement multimethod in c++: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2003/n1529.html http://www.codeproject.com/KB/recipes/mmcppfcs.aspx ...
1
vote
1answer
70 views

Can I dispatch a mutli-method on both Type AND properties in Clojure?

I have a method called "visualize" in my Clojure application which can supposedly render any part of my application. The problem I have is that some things in my application are Java classes and some ...
0
votes
2answers
153 views

Clojure multimethod on class OR keyword

Suppose I have this multimethod (defmulti m (fn [v] [(:type v)])) (defmethod m [Object] [k] (prn "Object")) (defmethod m [:mykwd] [k] (prn "mykwd")) When I call it with subclass of Object, it ...
0
votes
1answer
77 views

Any good multimethod implementation for Java?

I am wondering if there is any reasonably good multimethod implementation/library for Java like Lisp has. I've found just this apparently frozen one: JMMF
0
votes
1answer
132 views

Multiple dispatch and multi-methods

What are they, what's the different between them? Many sources, like Wikipedia, claim they're the same thing, but others explicitly say the opposite, like sbi in this question: First: "Visitor ...