Example #1
0
 static cxxmph::h128 hash128(const Seq &k, uint32_t seed) {
   cxxmph::h128 h;
   MurmurHash3_x64_128(k.data(), k.data_size() * sizeof(typename Seq::DataType), seed, &h);
   return h;
 }
 void push_back(const Seq &s) {
   push_back(s.data());
 }
Example #3
0
 bool operator()(const Seq &lhs, const KMerRawReference rhs) {
   return (array_equal_to<typename Seq::DataType>()(lhs.data(), lhs.data_size(), rhs));
 }