(E: Equivalence.Equivalence<A>)
| 61 | * The set of elements which are in both the first and second set |
| 62 | */ |
| 63 | export function intersection<A>(E: Equivalence.Equivalence<A>): (r: Set<A>) => (l: Set<A>) => Set<A> { |
| 64 | const i = intersection_(E) |
| 65 | return (x) => (y) => i(x, y) |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Convert a mutable set to a readonly one |
nothing calls this directly
no test coverage detected
searching dependent graphs…