Is there a library for a Set data type in Javascript?

前端 未结 6 1527
迷失自我
迷失自我 2020-12-09 09:28

Since Javascript doesn\'t have a built in set datatype has anyone come across a decent library for sets and set operations like union, intersection, etc?

6条回答
  •  遥遥无期
    2020-12-09 10:15

    like have been mention there is now Set on JS. Depending on your purposes you also may be interested on https://github.com/fsvieira/cset (I am its author), its a lazzy set lib, with common set operation, including cartesian product.

提交回复
热议问题