function
(not= & xs)
Check if any values in xs are not equal. Returns a boolean.
(not= [1 1] [1 1]) # => false
(not= [1 1] [2 3]) # => true
(not= [1 1] @[1 1]) # => true
(not= [1 1] @[2 3]) # => true
(not= @[1 1] @[1 1]) # => true
(not= @[1 1] @[2 3]) # => true
(deep-not= [1 1] [1 1]) # => nil
(deep-not= [1 1] [2 3]) # => true
(deep-not= [1 1] @[1 1]) # => true
(deep-not= [1 1] @[2 3]) # => true
(deep-not= @[1 1] @[1 1]) # => nil
(deep-not= @[1 1] @[2 3]) # => true