MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / operator||

Function operator||

framework/src/util/LDAPProp.cpp:169–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169cppmicroservices::LDAPPropExpr
170operator||(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right)
171{
172 if (left.IsNull())
173 return right;
174 if (right.IsNull())
175 return left;
176 return cppmicroservices::LDAPPropExpr("(|" + static_cast<std::string>(left) + static_cast<std::string>(right)
177 + ")");
178}

Callers

nothing calls this directly

Calls 1

IsNullMethod · 0.45

Tested by

no test coverage detected