neq method

bool neq(
  1. List other
)

判断两个 List 是否不相等

Implementation

bool neq(List other) => !eq(other);