forked from cel-expr/cel-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug_string.h
More file actions
26 lines (20 loc) · 787 Bytes
/
Copy pathdebug_string.h
File metadata and controls
26 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_TESTING_DEBUG_STRING_H_
#define THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_TESTING_DEBUG_STRING_H_
#include "eval/public/cel_value.h"
namespace google {
namespace api {
namespace expr {
namespace runtime {
namespace test {
// String rerpesentation of the underlying value.
std::string DebugValueString(const CelValue& value);
// String representation of the cel value. This should only be used for
// informational purposes and the exact format may change. In particular,
// ordering is not guaranteed for some container types.
std::string DebugString(const CelValue& value);
} // namespace test
} // namespace runtime
} // namespace expr
} // namespace api
} // namespace google
#endif // THIRD_PARTY_CEL_CPP_EVAL_PUBLIC_TESTING_DEBUG_STRING_H_