Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F2730692
containers-set-intersection.xreate
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 14, 12:20 AM
Size
156 B
Mime Type
text/plain
Expires
Mon, Mar 16, 12:20 AM (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
243610
Attached To
rXR Xreate
containers-set-intersection.xreate
View Options
/**
* intersection of two sets
*/
intersection = function(X: [a], sorted; Y: [b], sorted)
{
loop map (X -> x: a | exists(Y, x))
{x;};
}
Event Timeline
Log In to Comment