#include "../../jlib/util/std_util.h" #include int main() { std::vector All{ 1, 2, 3,4,5 }; std::vector Sub{ 1,2,3 }; auto other = jlib::get_other(All, Sub); assert(other == std::vector({4, 5})); }