Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
  • defn = public
  • defn- = private

Perhaps I have bad clojure coding style -- but I find that most functions I write in clojure are small helper functions that I do not want to expose.

Is there some configuration option, where:

  • defn = private by default,
  • and to make something public, I have to do defn+ ?

Thanks!

share|improve this question

2 Answers

up vote 9 down vote accepted

No. There is not.

An alternative approach which might or might not work for you is to declare a foo.bar.internal namespace containing all the private helpers which is used by your foo.bar namespace. This has advantages over private function declarations when you want to use private functions in macro expansions.

share|improve this answer
8  
Not just that there isn't, it would really mess with the mind of any other Clojurian looking at such code. I would discourage it even if it were doable. – Marko Topolnik Apr 23 '12 at 12:33

If the "helper functions" are very likely to be used once, you could choose to make them locals of your bigger functions, or write them as anonymous functions. See letfn: http://clojuredocs.org/clojure_core/clojure.core/letfn and http://clojuredocs.org/clojure_core/clojure.core/fn.

I hardly ever use letfn myself.

share|improve this answer
I don't think the size of these helper functions matters. If they're used more than once, they really should be abstracted for dryer code. I can't really see a reason for making them local/anonymous unless they're only used once locally. – tjb1982 2 days ago
This is true. I will adapt the answer. – Michiel Borkent 2 days ago
I tried to use letfn for my helpers, but it made my code too messy. So, after a short time I switched back to defn-. – Leonid Beschastny 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.