Calculates the intersection of two sets.
The first set
The second set
const even = Chalkboard.abal.set([0, 2, 4, 6]);const small = Chalkboard.abal.set([0, 1, 2, 3]);const intersection = Chalkboard.abal.intersection(even, small); // Returns {0, 2} Copy
const even = Chalkboard.abal.set([0, 2, 4, 6]);const small = Chalkboard.abal.set([0, 1, 2, 3]);const intersection = Chalkboard.abal.intersection(even, small); // Returns {0, 2}
Calculates the intersection of two sets.