MCPcopy Create free account
hub / github.com/apache/arrow / JSONArray

Function JSONArray

cpp/src/arrow/json/from_string_test.cc:97–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95
96template <typename... Args>
97std::string JSONArray(Args&&... args) {
98 std::stringstream ss;
99 ss << "[";
100 JSONArrayInternal(&ss, std::forward<Args>(args)...);
101 ss << "]";
102 return ss.str();
103}
104
105template <typename T, typename C_TYPE = typename T::c_type>
106void AssertJSONArray(const std::shared_ptr<DataType>& type, const std::string& json,

Callers 2

TESTFunction · 0.85
TYPED_TEST_PFunction · 0.85

Calls 2

JSONArrayInternalFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected