OEHasAtomName

class OEHasAtomName : public OESystem::OEUnaryPredicate<OEChem::OEAtomBase>

This class represents OEHasAtomName functor that identifies atoms (OEAtomBase) with a specific name.

The following methods are publicly inherited from OEUnaryPredicate:

operator()

CreateCopy

CreatePredicateCopy

The following methods are publicly inherited from OEUnaryFunction:

operator()

CreateCopy

Constructors

OEHasAtomName(name: str, trimspaces: bool = False) -> OEHasAtomName

Constructs the functor with the provided name. The trimspaces allows matching atoms with names by first trimming off white spaces.

operator()

__call__(atom: OEAtomBase) -> bool

Returns true, if the atom name returned by the OEAtomBase.GetName method for the given OEAtomBase object is equivalent to the name with which the functor is constructed.

CreateCopy

CreateCopy() -> OEHasAtomName

Deep copy constructor that returns a copy of the object. The memory for the returned OEHasAtomName object is dynamically allocated and owned by the caller.