私はやろうとしました:
(defprotocol TestP
(fun [this ^int i]))
(deftype Test [] TestP
(fun [this ^int i] i))
ただし、コンパイルは失敗し、Can't find matching method: fun
. これは、deftype 関数がパラメーターの型ヒントを受け入れない可能性があることを意味しますか?
私はやろうとしました:
(defprotocol TestP
(fun [this ^int i]))
(deftype Test [] TestP
(fun [this ^int i] i))
ただし、コンパイルは失敗し、Can't find matching method: fun
. これは、deftype 関数がパラメーターの型ヒントを受け入れない可能性があることを意味しますか?