編集
Diese Frage macht keinen Sinn, weil ich ein Idiot bin und die Clojure-Dokumentation falsch gelesen habe.
Was ich habe:
Ich habe etwas Ähnliches:
(defprotocol Foo "doc" [foo bar]
(Foo-bark [foo])
(Foo-meow [foo])
(Foo-other [foo]
... long
multi
line
inline
implementation))
Was ich bevorzugen würde:
(defprotocol Foo "doc" [foo bar]
(Foo-bark [foo])
(Foo-mewo [foo])
(Foo-other [foo]))
(define Foo-other [foo]
.. long
multi
line
implementation)
Frage
Ist das möglich? Wenn nicht, wie komme ich der Sache am nächsten?