MCPcopy Create free account
hub / github.com/clechasseur/pathcopycopy / operator&

Function operator&

PathCopyCopy/src/PathCopyCopyPluginsRegistry.cpp:58–62  ·  view source on GitHub ↗

Performs a bitwise AND operation between two PipelinePluginsOptions values. @param p_Left Left operand. @param p_Right Right operand. @return Result of bitwise AND between p_Left and p_Right (cast as an int).

Source from the content-addressed store, hash-verified

56 // @return Result of bitwise AND between p_Left and p_Right (cast as an int).
57 //
58 int operator&(const PipelinePluginsOptions p_Left,
59 const PipelinePluginsOptions p_Right) noexcept
60 {
61 return static_cast<int>(p_Left) & static_cast<int>(p_Right);
62 }
63
64 //
65 // Returns all plugins supported by PCC in the default order. This is how plugins will be

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected