ElixirでModulo operatorを使用する方法
たとえば、Ruby]を実行できます。
5 % 2 == 0 _
5 % 2 == 0
Rubyのモジュロオペレータとどのように異なりますか?
使用 Integer.mod/2、参照: https://hexdocs.pm/elixir/integer.html#mod/2
Integer.mod/2
iex>Integer.mod(-5, 2) 1 _
iex>Integer.mod(-5, 2) 1