We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50ec691 commit 0d584ffCopy full SHA for 0d584ff
1 file changed
providers/flagd/src/evaluator/json_logic/json_logic.cpp
@@ -4,18 +4,17 @@
4
#include <utility>
5
6
#include "absl/status/status.h"
7
-#include "array.h"
8
#include "data.h"
9
#include "logic.h"
10
-#include "numeric.h"
11
-#include "string_ops.h"
12
13
namespace json_logic {
14
15
JsonLogic::JsonLogic() {
16
RegisterOperation("var", ops::Var);
17
RegisterOperation("missing", ops::Missing);
18
RegisterOperation("missing_some", ops::MissingSome);
+
+ RegisterOperation("And", ops::And);
19
}
20
21
void JsonLogic::RegisterOperation(std::string_view operation,
0 commit comments