set_intersection_size
この関数は2つの集合オブジェクトを取り、それらが共通に持っているアイテムの数を教えてくれます。
#include <dlib / set_utils.h>
template <
typename T,
typename U
>
unsigned long set_intersection_size (
const T& a,
const U& b
);
/*!
requires
- T and U must both be implementations of set/set_kernel_abstract.h
ensures
- returns the number of elements that are in both set a and b
!*/