Implement set equality.

This commit is contained in:
Dominik Pantůček 2023-04-11 13:49:28 +02:00
parent 30664d10f8
commit 575c1cdb3d
7 changed files with 44 additions and 7 deletions

View file

@ -389,6 +389,13 @@ Returns a new lset instance containing elements present both in
Returns a new lset instance from ```ls1``` with all elements in
```ls2``` removed from it.
(lset=? ls1 ls2)
* ```ls1``` - lset instance
* ```ls2``` - lset instance
Returns true if the sets contain exactly the same values.
### String
(import util-string)