containsExpressionInList checks if an expression is in the list.
(list *[]string, expr string)
| 268 | |
| 269 | // containsExpressionInList checks if an expression is in the list. |
| 270 | func containsExpressionInList(list *[]string, expr string) bool { |
| 271 | return slices.Contains(*list, expr) |
| 272 | } |
no outgoing calls
no test coverage detected