libmesh解析
本工作只是尝试解析原libmesh的代码,供学习使用
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 
Public 成员函数 | 所有成员列表
libMesh::CompareDofObjectsByID结构体 参考

Comparison object to use with DofObject pointers. 更多...

#include <dof_object.h>

Public 成员函数

bool operator() (const DofObject *a, const DofObject *b) const
 

详细描述

Comparison object to use with DofObject pointers.

This sorts by id(), so when we iterate over a set of DofObjects we visit the objects in order of increasing ID.

在文件 dof_object.h1371 行定义.

成员函数说明

bool libMesh::CompareDofObjectsByID::operator() ( const DofObject a,
const DofObject b 
) const
inline

在文件 dof_object.h1373 行定义.

参考 libMesh::DofObject::id().

1375  {
1376  libmesh_assert (a);
1377  libmesh_assert (b);
1378 
1379  return a->id() < b->id();
1380  }

该结构体的文档由以下文件生成: