#include <Face.h>
Definition at line 385 of file Face.h.
 
  
  
      
        
          | std::size_t Nektar::NekMeshUtils::FaceHash::operator()  | 
          ( | 
          FaceSharedPtr const &  | 
          p | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 387 of file Face.h.
  389         unsigned int nVert = p->m_vertexList.size();
 
  390         std::size_t seed = 0;
 
  391         std::vector<unsigned int> ids(nVert);
 
  393         for (
int i = 0; i < nVert; ++i)
 
  395             ids[i] = p->m_vertexList[i]->m_id;
 
  398         std::sort(ids.begin(), ids.end());
 
  399         boost::hash_range(seed, ids.begin(), ids.end());