• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmake_install_test/H03-May-2022-147

parse-vectors/H03-May-2022-423411

ryu/H03-Dec-2020-460292

JamfileH A D03-Dec-20202.1 KiB10998

README.mdH A D03-Dec-20201.4 KiB3725

array.cppH A D03-Dec-202032.9 KiB1,2451,022

basic_parser.cppH A D03-Dec-202050.6 KiB1,5651,364

doc_background.cppH A D03-Dec-20204.4 KiB214114

doc_parsing.cppH A D03-Dec-20207.7 KiB255149

doc_quick_look.cppH A D03-Dec-20208.4 KiB338207

doc_serializing.cppH A D03-Dec-20201.4 KiB7634

doc_storage_ptr.cppH A D03-Dec-20205.1 KiB17797

doc_uses_allocator.cppH A D03-Dec-20201.8 KiB7833

doc_using_numbers.cppH A D03-Dec-20203.9 KiB19494

double.cppH A D03-Dec-202012 KiB433375

error.cppH A D03-Dec-20202.3 KiB7554

fwd.cppH A D03-Dec-2020425 152

json.cppH A D03-Dec-20201.2 KiB4124

kind.cppH A D03-Dec-20201.1 KiB5434

limits.cppH A D03-Dec-202011.3 KiB393323

main.cppH A D03-Dec-2020759 3217

make-pvs.pyH A D03-Dec-20202.3 KiB11896

make-strings.pyH A D03-Dec-2020394 1811

memory_resource.cppH A D03-Dec-20203.3 KiB14198

monotonic_resource.cppH A D03-Dec-20208.6 KiB312253

natvis.cppH A D03-Dec-20203 KiB11689

null_resource.cppH A D03-Dec-2020917 4627

object.cppH A D03-Dec-202044.2 KiB1,4911,191

parse-vectors.hppH A D03-Dec-2020125.6 KiB1,4711,447

parse.cppH A D03-Dec-20203.3 KiB152114

parser.cppH A D03-Dec-20208.9 KiB381277

pilfer.cppH A D03-Dec-2020662 3316

serialize.cppH A D03-Dec-20201.5 KiB6950

serializer.cppH A D03-Dec-202014.3 KiB566444

snippets.cppH A D03-Dec-202016.9 KiB853451

static_resource.cppH A D03-Dec-20203 KiB13089

storage_ptr.cppH A D03-Dec-20204.3 KiB215157

stream_parser.cppH A D03-Dec-202033.9 KiB1,2301,049

string.cppH A D03-Dec-202077.8 KiB2,7852,273

string_view.cppH A D03-Dec-2020365 121

system_error.cppH A D03-Dec-2020366 121

test.hppH A D03-Dec-202021.3 KiB1,113943

test_suite.hppH A D03-Dec-202015 KiB738592

value.cppH A D03-Dec-202065.8 KiB2,1171,823

value_from.cppH A D03-Dec-20206.5 KiB261205

value_ref.cppH A D03-Dec-20209.5 KiB405316

value_stack.cppH A D03-Dec-20203.1 KiB12856

value_to.cppH A D03-Dec-20201.6 KiB8361

visit.cppH A D03-Dec-20202.8 KiB9373

README.md

1# JSON Parse Test Vectors
2
3The files in the direectory parse-vectors come from this project:
4
5JSON Test Suite
6
7A comprehensive test suite for RFC 8259 compliant JSON parsers
8
9https://github.com/nst/JSONTestSuite
10
11These files are covered by the following copyright and MIT License,
12reproduced from the original project:
13
14---
15
16MIT License
17
18Copyright (c) 2016 Nicolas Seriot
19
20Permission is hereby granted, free of charge, to any person obtaining a copy
21of this software and associated documentation files (the "Software"), to deal
22in the Software without restriction, including without limitation the rights
23to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24copies of the Software, and to permit persons to whom the Software is
25furnished to do so, subject to the following conditions:
26
27The above copyright notice and this permission notice shall be included in all
28copies or substantial portions of the Software.
29
30THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36SOFTWARE.
37