Ok, so I want/need to use the "|: operator
Say I have a list:
list = [{1,2,3},{2,3,4},{3,4,5},{4,5,6}]
I need to find the intersection of the list without using: set.intersection(*L)
Ideally I'd like to use a function with a for loop (or nested for loops) to get return the intersections of all of the sets in the list:
isIntersction(L) = {1,2,3,4,5,6}
Thanks