I wish to use the clojure "get" keyword for my own function. How can I prevent clojure from using the "get" defined in the standard libraries?
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.
|
|
As mentioned this is not necessarily a good idea, but you can do it like this:
|
|||
|
|
|
I wouldn't recommend using get for anything but getting a value out of a collection, since that's what anyone reading your code would expect it to do. If you don't want to do that, Wodin's answer is what you want. If you actually want to "overload" get as per your title, that is, make the standard get function work with your own collection type - just make sure your collection implements ILookup, Map, or IPersistentSet and you can provide your own get/valAt method. |
|||
|
|