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).
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected