Compreendendo a assinatura `k: Nat ** 5 * k = n`

A seguinte função compila:

onlyModByFive : (n : Nat) -> (k : Nat ** 5 * k = n) -> Nat
onlyModByFive n k = 100

Mas o que fazk representar com a suaNat ** 5 * k = n sintaxe?

Além disso, como posso chamá-lo? Aqui está o que eu tentei, mas não entendo a saída.

*Test> onlyModByFive 5 5
When checking an application of function Main.onlyModByFive:
        (k : Nat ** plus k (plus k (plus k (plus k (plus k 0)))) = 5) is not a
        numeric type

fonte de resposta -https://groups.google.com/d/msg/idris-lang/ZPi9wCd95FY/eo3tRijGAAAJ

questionAnswers(1)

yourAnswerToTheQuestion