OEHasMapIdx
class OEHasMapIdx : public OESystem::OEUnaryPredicate<OEChem::OEAtomBase>
This class represents OEHasMapIdx functor that identifies atoms (OEAtomBase) with any or a specific map index.
The following methods are publicly inherited from OEUnaryPredicate:
The following methods are publicly inherited from OEUnaryFunction:
Constructors
OEHasMapIdx(idx: int = 0) -> OEHasMapIdx
Constructs the functor with the internal map index.
With no arguments, this constructs a functor which returns true
for any atom with a non-zero map index. When constructed with a
non-zero integer, it constructs a functor which return true for
atoms which have the same map index as the constructor argument.
operator()
__call__(atom: OEAtomBase) -> bool
Returns true, if the index returned by the
OEAtomBase.GetMapIdx method for the given
OEAtomBase object is equivalent to the non-zero index
number with which the functor is constructed.
Returns true, if the index returned by the
OEAtomBase.GetMapIdx method for the given
OEAtomBase object is non-zero when the index
number with which the functor is constructed is 0.
CreateCopy
CreateCopy() -> OEHasMapIdx
Deep copy constructor that returns a copy of the object. The memory for the returned OEHasMapIdx object is dynamically allocated and owned by the caller.