Template Function Jet::Utilities::VectorIntersection

Function Documentation

template<typename T>
inline std::vector<T> Jet::Utilities::VectorIntersection(const std::vector<T> &v1, const std::vector<T> &v2)

Computes the intersection of two small vectors.

Template Parameters

T – Type of the elements in the vectors.

Parameters
  • v1 – Vector on the LHS of the intersection.

  • v2 – Vector on the RHS of the intersection.

Returns

Vector containing the elements in both vectors.