I'm probably doing something wrong but this doesn't work for some reason: user=> (seq (.list (java.io.File. ".") (reify java.io.FilenameFilter (accept [f s] (not (.startsWith s ".")))))) java.lang.IllegalArgumentException: Can't define method not in interfaces: accept (NO_SOURCE_FILE:36)
This does though: user=> (seq (.list (java.io.File. ".") (proxy [java.io.FilenameFilter] [] (accept [f s] (not (.startsWith s ".")))))) ("file1" "file2" ... ) Thoughts? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en