Boolean @Not(Boolean arg)
argで指定された真偽値の反対の値を返します。つまり、Trueの場合にはFalseを、Falseの場合にはTrueを返します。
なし
# Trueの反対 # -> False @Not(@True()) # 未読 @Not(@Seen())