(input: &str)
| 1 | pub fn find_operator(input: &str) -> Option<&str> { |
| 2 | for (op, operator) in OPERATORS { |
| 3 | if op == input { |
| 4 | return Some(operator); |
| 5 | } |
| 6 | } |
| 7 | None |
| 8 | } |
| 9 | |
| 10 | pub const CONDITIONAL: &str = "_?_:_"; |
| 11 | pub const LOGICAL_AND: &str = "_&&_"; |
no outgoing calls
no test coverage detected