MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / Ops

Enum Ops

679. 24 Game/Solution.cpp:15–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13using namespace std;
14
15enum Ops {Add, Minus, Mul, Div, NotValid};
16
17Ops operator++ (Ops & rs, int) {
18 Ops old_enum = rs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected