Metafunction to compute the result of set difference between two tuples. More...
Public Types | |
using | type = typename detail::difference_impl< 0, tuple_size< Larger >::value, Larger, Smaller, tuple<>, Check >::type |
Metafunction to compute the result of set difference between two tuples.
For example, if Larger is <0,2,4> and Smaller is <0,4>, the result will be <2>.
Larger | Tuple of elements |
Smaller | Tuple of elements. Must have less or equal elements than Larger. |