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

0 votes
in Docs by

The docstring of defprotocol has an out-of-date description as follows:

{quote}
defprotocol is dynamic, has no special compile-time effect, and defines no new types or classes.
{quote}

Indeed, it used to have no compile-time effect. Today, however, it does generate a corresponding interface via gen-interface at compile time.

The patch just removes this description.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1337 (reported by sohta)
...