値がゼロより大きい場合は、値を出力する必要があります。
info({mail, BoxPid, Messages, MessageCount, MessageDropCount}, Req, S) ->
if MessageDropCount > 0 ->
io:format("dropped=~p~n", [MessageDropCount]);
true -> true
end,
...,
{loop, Req, S};
表情のtrue -> true
部分が苦手です。if
それを回避する方法はありますか?そのイディオムはありますか?