Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

I find myself repeat code like this

(ns foo.bar
(:refer-clojure :exclude (link: doseq))
(:require (link: clojure.core.typed :refer [doseq)]))

and just think why not something like:

(ns foo.bar
(:require (link: clojure.core.typed :override [doseq)]))

2 Answers

0 votes
by

Comment made by: mikera

I agree this is very annoying.

I think it is a duplicate of my issue though: The patch for CLJ-1257 would make this unnecessary (it would allow the user to override any vars, without getting an exception).

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1746 (reported by alex+import)
...