Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
6answers
981 views

What “reify” and “reification” means in the context of (functional?) programming?

I read this term a lot in blogs about haskell and functional programming (specially in sigfpe's blog) but I don't have a clue about what it means. I get away with not knowing it most of the times, but ...
11
votes
1answer
192 views

Get a Haskell record's field names as a list of strings?

Say I have the following: data Rec = Rec { alpha :: Int, beta :: Double, phi :: Float } sample = Rec 1 2.3 4.5 I understand Template Haskell & the reify function can get me ...
5
votes
3answers
351 views

Use a clojure macro to automatically create getters and setters inside a reify call

I am trying to implement a huge Java interface with numerous (~50) getter and setter methods (some with irregular names). I thought it would be nice to use a macro to reduce the amount of code. So ...
3
votes
1answer
352 views

Provide a constructor with Clojure reify

When using reify in Clojure, how can I provide an expression for the constructor? Alternatively, how can I pass arguments to the base class constructor?
2
votes
1answer
77 views

Dynamic let form as part of reify within a macro

Ok, let's try to get this straight: my final intent is to provide a macro as an API to users which will look like: (defscript [a b] (println a)) The result has to be an instance of a Script ...
2
votes
1answer
92 views

One-off instances created with reify cause NPE

I'm trying to write a Clojure layer around a Java API that looks like the following: public class Executor { public interface ExecutorJob<Result> { public Result execute () throws ...