File: use-simdjson.cpp

package info (click to toggle)
python-awkward 2.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 23,088 kB
  • sloc: python: 148,689; cpp: 33,562; sh: 432; makefile: 21; javascript: 8
file content (10 lines) | stat: -rw-r--r-- 285 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#include "../simdjson/singleheader/simdjson.h"
#include "../simdjson/singleheader/simdjson.cpp"

using namespace simdjson;

int main(int argc, char *argv[]) {
  padded_string unparsed = get_corpus("small-example.json");
  ParsedJson parsed = build_parsed_json(unparsed);
  return 0;
}