Bob Shock
unread,Sep 28, 2009, 9:40:24 PM9/28/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Clojure
If I have a Java function that uses List<Integer> or
Map<String,Integer>, is there anyway to create these in Clojure the
same way I can create vectors or maps?
For example, if a function signature is:
void foobar(List x, Map y)
I can pass standard vectors and maps to it, but I can't figure out how
to do the same for this function:
void foobar(List<Int> x, Map<String,Integer> y)
Thanks.