containers-set-intersection.xreate
No OneTemporary

File Metadata

Created
Thu, Jul 9, 2:26 AM

containers-set-intersection.xreate

/**
* intersection of two sets
*/
intersection = function(X: [a], sorted; Y: [b], sorted)
{
loop map (X -> x: a | exists(Y, x))
{x;};
}

Event Timeline