Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | Properties | List of all members
CDPL.Pharm.FeatureTypeMatchFunctor Class Reference

FeatureTypeMatchFunctor. More...

+ Inheritance diagram for CDPL.Pharm.FeatureTypeMatchFunctor:

Public Member Functions

None __init__ (FeatureTypeMatchFunctor func)
 Initializes a copy of the FeatureTypeMatchFunctor instance func. More...
 
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
FeatureTypeMatchFunctor assign (FeatureTypeMatchFunctor func)
 Replaces the current state of self with a copy of the state of the FeatureTypeMatchFunctor instance func. More...
 
bool __call__ (Feature ftr1, Feature ftr2)
 Checks if ftr1 and ftr2 have the same feature type. More...
 

Properties

 objectID = property(getObjectID)
 

Detailed Description

FeatureTypeMatchFunctor.

Constructor & Destructor Documentation

◆ __init__()

None CDPL.Pharm.FeatureTypeMatchFunctor.__init__ ( FeatureTypeMatchFunctor  func)

Initializes a copy of the FeatureTypeMatchFunctor instance func.

Parameters
funcThe FeatureTypeMatchFunctor instance to copy.

Member Function Documentation

◆ getObjectID()

int CDPL.Pharm.FeatureTypeMatchFunctor.getObjectID ( )

Returns the numeric identifier (ID) of the wrapped C++ class instance.

Different Python FeatureTypeMatchFunctor instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b thus cannot tell reliably whether the two FeatureTypeMatchFunctor instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID().

Returns
The numeric ID of the internally referenced C++ class instance.

◆ assign()

FeatureTypeMatchFunctor CDPL.Pharm.FeatureTypeMatchFunctor.assign ( FeatureTypeMatchFunctor  func)

Replaces the current state of self with a copy of the state of the FeatureTypeMatchFunctor instance func.

Parameters
funcThe FeatureTypeMatchFunctor instance to copy.
Returns
self

◆ __call__()

bool CDPL.Pharm.FeatureTypeMatchFunctor.__call__ ( Feature  ftr1,
Feature  ftr2 
)

Checks if ftr1 and ftr2 have the same feature type.

Parameters
ftr1The first feature.
ftr2The second feature.
Returns
True if the feature types are equal, and False otherwise.
See also
Pharm.getType(const Feature&)