You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a breakdown of significant lines of code for each class concept. It combines .h, .cpp, and test code from the include, lib and test directories respectively. The Total column should give a rough idea of how much work it is to review.
Class
Header
CPP
Test
Total
Type
Notes
BitSet
379
0
299
678
template, bit twiddling
Budget
24
0
0
24
Compile
10
33
0
43
wrapper
Consts
16
0
0
16
Debug
74
495
156
725
skip review
DefaultMap
29
0
25
54
template
Dfa
134
220
348
702
iterators, algorithm
Except
55
0
0
55
Executable
45
142
77
264
container
Fnv
31
0
15
46
template
Matcher
583
62
675
1320
templates, optimized
Minimizer
118
256
156
530
algorithm
Nfa
148
269
83
500
iterators, operations
Outcome
21
0
0
21
omnibus
0
0
351
351
just tests
Parser
34
185
75
294
tricky
Powerset
42
171
117
330
algorithm
Proxy
117
0
0
117
iterators, template
Red
169
482
449
1100
API
much generated
Scanner
48
262
193
503
tricky
Serializer
67
233
73
373
file format
SparseVec
58
0
110
168
template, algorithm
Types
77
0
0
77
Util
45
129
74
248
The Debug stuff isn't used by the library; so, bugs there wouldn't be very concerning. It's used in some unit tests and is available for ad hoc debugging.
The text was updated successfully, but these errors were encountered:
Here's a breakdown of significant lines of code for each class concept. It combines
.h
,.cpp
, and test code from theinclude
,lib
andtest
directories respectively. The Total column should give a rough idea of how much work it is to review.The Debug stuff isn't used by the library; so, bugs there wouldn't be very concerning. It's used in some unit tests and is available for ad hoc debugging.
The text was updated successfully, but these errors were encountered: