#pragma once // // This file is distributed under the MIT License. See LICENSE.md for details. // template bool intersects(const S1Ty &S1, const S2Ty &S2) { S1Ty Intersection = llvm::set_intersection(S1, S2); return !Intersection.empty(); } template bool equal(const S1Ty &S1, const S2Ty &S2) { return llvm::set_is_subset(S1, S2) and llvm::set_is_subset(S2, S1); }