Returns true this Array and given sequence have the same elements.
(self, b)
| 404 | return len(set(self)) |
| 405 | |
| 406 | def equal(self, b): |
| 407 | """ Returns true this Array and given sequence have the same elements. """ |
| 408 | self.__validate_seq(b) |
| 409 | return all(self.eq(b)) |
| 410 | |
| 411 | def remove(self, b, inplace=False): |
| 412 | """ Removes first occurence(s) of the value(s). """ |