(E: Equivalence.Equivalence<A>)
| 223 | * `true` if and only if every element in the first set is an element of the second set |
| 224 | */ |
| 225 | export function isSubset<A>(E: Equivalence.Equivalence<A>): (x: Set<A>, y: Set<A>) => boolean { |
| 226 | const i = isSubset_(E) |
| 227 | return (x, y) => i(y, x) |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * `true` if and only if every element in the first set is an element of the second set |
nothing calls this directly
no test coverage detected
searching dependent graphs…