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

Function operator&&

framework/src/util/LDAPProp.cpp:158–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156} // namespace cppmicroservices
157
158cppmicroservices::LDAPPropExpr
159operator&&(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right)
160{
161 if (left.IsNull())
162 return right;
163 if (right.IsNull())
164 return left;
165 return cppmicroservices::LDAPPropExpr("(&" + static_cast<std::string>(left) + static_cast<std::string>(right)
166 + ")");
167}
168
169cppmicroservices::LDAPPropExpr
170operator||(cppmicroservices::LDAPPropExpr const& left, cppmicroservices::LDAPPropExpr const& right)

Callers

nothing calls this directly

Calls 1

IsNullMethod · 0.45

Tested by

no test coverage detected