コード例 #1
0
ファイル: edgeseqobject.c プロジェクト: bravery/python-igraph
PyObject* igraphmodule_EdgeSeq_is_all(igraphmodule_EdgeSeqObject* self) {
  if (igraph_es_is_all(&self->es))
    Py_RETURN_TRUE;
  Py_RETURN_FALSE;
}
コード例 #2
0
ファイル: edge_selector.cpp プロジェクト: jimmyskull/igraphpp
bool EdgeSelector::is_all() const noexcept { return igraph_es_is_all(ptr()); }