我是透析器的新手,我希望有人可以通过回答这个问题让我快速了解它的操作。
我认为下面的函数,给定一个数字 X 和一个非负整数 N,会产生一个数字。(X 的 N 次方。)
-spec pow(X :: number(), N :: non_neg_integer) -> number().
pow(X, N) ->
pow(X, N, 1).
pow(_X, 0, R) ->
R;
pow(X, N, R) ->
pow(X*X,
N bsr 1,
if
N band 1 =:= 0 ->
R;
true ->
X*R
end).
但是透析器不喜欢我的规格。它告诉我:
Invalid type specification for function t:pow/2.
The success typing is (_,integer()) -> any()
在我看来,它所暗示的规范过于包容。有人可以解释它为什么这样做,以及是否有任何方法可以让更严格的类型规范被接受?