make (symbol foo "bar") work with foo being a namespace
Description
Environment
Attachments
- 05 Dec 2011, 04:13 PM
Activity
Ambrose Bonnaire-Sergeant July 22, 2014 at 7:10 AM
I did vote on this, but I retracted my vote. Strings for both arguments is clearly a correct implementation to me, but combinations of symbols/namespaces/named/namespaced things are not so clear.
Frank Siebenlist March 2, 2012 at 10:53 PM
The same enhancement that joe suggests for symbol, would also apply to keyword.
See: http://groups.google.com/group/clojure/browse_thread/thread/222e4abc16df8b20
Probably same/similar solution applies to both issues.
-FrankS.
Joseph Gallo December 16, 2011 at 10:18 PM
Stuart, I'm not opposed to the idea of separate protocols for Named and Namespaced. Where should I go about creating a proposal to create those protocols and get them into clojure? I'm interested in doing the leg-work, or being a part of it. But as an outsider, I don't know what to do next – creating a ticket in Jira exhausted my knowledge of the process.
Kevin Downey December 9, 2011 at 6:24 PM
Named being a protocol or an interface seems orthogonal to being able to create a symbol qualified with a namespace when you have a namespace in hand.
I don't think the patch goes far enough, not only should (symbol ns "foo") be supported, but also (symbol ns 'foo), given that (symbol 'foo) works and (symbol "foo") works, (symbol 'bar 'foo) should also work, but doesn't.
if Named is a protocol, and if you extend it to String, and if you make the symbol function create symbols from one or two Named things you still end up having to do (symbol (ns-name ns) 'foo) or (symbol (ns-name ns) "foo")
Stuart Halloway December 9, 2011 at 3:39 PM
I am not sure I like this, but I would like a rethink of names and namespaces. Doing a lot of cross language work, it would be great to have protocols for "I have a name" and for "I have a namespace".
With such protocols in place, it would also be possible to separately consider implementing symbol et al in terms of them.
I've run across the need to do (symbol ns "bar") a few times, and the existing approach (symbol (name (ns-name ns)) "bar") just doesn't seem like it ought to be the only way to do the job. Includes a patch to make this work, by adding a new arity to Symbol.intern().
Some discussion on this idea, here: https://groups.google.com/forum/#!topic/clojure/n25aZ5HA7hc/discussion