-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnormalized.txt
1602 lines (1602 loc) · 75.4 KB
/
normalized.txt
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
and nnp => and nnp :b-gpe
ascii nnp => ascii nnp :b-gpe
additionally rb => additionally rb :o
address nn => address nn :o
alias nnp => alias nnp :o
allocation nnp => allocation nnp :o
also rb => also rb :o
appending vbg => append vb :o
applying vbg => appli vb :o
arithmetic jj => arithmetic jj :b-gpe
array nn => array nn :o
assignability nnp => assignability nnp :o
assigning vbg => assign vb :o
assignments nns => assignment nn :o
assume nnp => assume nnp :o
backus-naur jj => backus-naur jj :o
binary jj => binary jj :o
blank nnp => blank nnp :b-person
blocks nnp => blocks nnp :b-person
boolean jj => boolean jj :b-gpe
bootstrapping nnp => bootstrapping nnp :o
break nnp => break nnp :o
built-in jj => built-in jj :o
calling vbg => call vb :o
calls vbz => call vb :o
camelcase nnp => camelcase nnp :b-gpe
carriage nnp => carriage nnp :o
cases nns => case nn :o
category nnp => category nnp :o
channel nnp => channel nnp :o
channels nnp => channels nnp :o
characters nnps => character nn :o
close nnp => close nnp :o
closing vbg => close vb :o
comments nns => comment nn :o
communication nn => communication nn :o
comparison nnp => comparison nnp :o
comparisons nns => comparison nn :o
complex jj => complex jj :o
composite jj => composite jj :o
computer nnp => computer nnp :o
consequently rb => consequently rb :o
consider vb => consider vb :o
constspec nnp => constspec nnp :o
constant jj => constant jj :o
constants nns => constant nn :o
continue nnp => continue nnp :o
conversions nns => conversion nn :o
converting vbg => convert vb :o
current nnp => current nnp :o
declarations nns => declaration nn :o
defer nnp => defer nnp :o
deletion nn => deletion nn :o
dependency nnp => dependency nnp :o
ebnf nnp => ebnf nnp :b-gpe
elements nns => element nn :o
embeddedfield nnp => embeddedfield nnp :b-gpe
empty jj => empty jj :o
errors nnps => error nn :o
examples nns => example nn :o
executing vbg => execut vb :o
execution nn => execution nn :o
explicit nnp => explicit nnp :b-person
exported vbn => export vb :o
expression nn => expression nn :o
expressions nns => expression nn :o
extended jj => extended jj :o
fma nnp => fma nnp :o
field nnp => field nnp :b-person
first nnp => first nnp :o
floating-point jj => floating-point jj :o
forclause nnp => forclause nnp :o
form nnp => form nnp :o
full nnp => full nnp :o
function nnp => function nnp :o
further jj => further jj :o
general jj => general jj :o
general nnp => general nnp :o
give vb => give vb :o
given vbn => given vb :o
go nnp => go nnp :b-gpe
go nnp => go nnp :o
goto nnp => goto nnp :o
graphic nnp => graphic nnp :b-gpe
handling vbg => handl vb :o
here rb => here rb :o
hexadecimal nnp => hexadecimal nnp :o
however rb => however rb :o
ieee nnp => ieee nnp :o
ieee-754 jj => ieee-754 jj :o
identifierlist nnp => identifierlist nnp :o
identifiers nnps => identifier nn :o
imaginary nnp => imaginary nnp :o
implementation nnp => implementation nnp :o
import nnp => import nnp :o
importpath nnp => importpath nnp :b-gpe
importpaths nnp => importpaths nnp :o
incdec jj => incdec jj :o
index nnp => index nnp :b-gpe
initialization nnp => initialization nnp :o
instead rb => instead rb :o
integer jjr => integer jjr :o
interface nnp => interface nnp :o
interpreted vbn => interpret vb :o
introduction nn => introduction nn :o
iota nnp => iota nnp :o
keywords vb => keywords vb :o
label nnp => label nnp :b-person
labeled vbn => label vb :o
labels nnp => labels nnp :b-gpe
length nnp => length nnp :b-person
letter nnp => letter nnp :o
letters nns => letter nn :o
lexical jj => lexical jj :o
line nnp => line nnp :o
literal jj => literal jj :o
literaltype nnp => literaltype nnp :b-gpe
ll nnp => ll nnp :b-gpe
lm nnp => lm nnp :b-gpe
lo nnp => lo nnp :o
logical jj => logical jj :o
loosely rb => loosely rb :o
lower-case jj => lower-case jj :o
lt nnp => lt nnp :b-gpe
lu nnp => lu nnp :o
making vbg => make vb :o
manipulating vbg => manipul vb :o
map nnp => map nnp :o
method nnp => method nnp :b-gpe
more rbr => more rbr :o
moreover rb => moreover rb :o
multiple nnp => multiple nnp :o
multiplication nn => multiplication nn :o
nul nnp => nul nnp :b-gpe
nan nnp => nan nnp :o
nd nnp => nd nnp :o
next jj => next jj :o
non-exported jj => non-exported jj :o
non-terminals nns => non-terminal nn :o
notation nnp => notation nnp :o
note nn => note nn :o
number nnp => number nnp :o
numeric nnp => numeric nnp :o
or nnp => or nnp :o
octal jj => octal jj :o
omitted vbn => omit vb :o
omitting vbg => omit vb :o
only rb => only rb :o
operands nns => operand nn :o
operator nnp => operator nnp :o
operators nnps => operator nn :o
order nn => order nn :o
others nns => other nn :o
otherwise rb => otherwise rb :o
otherwise vb => otherwise vb :o
overflow nnp => overflow nnp :b-person
package vb => package vb :o
packagename nnp => packagename nnp :b-gpe
packages nns => package nn :o
parameter nnp => parameter nnp :b-person
passing vbg => pass vb :o
pointer nn => pointer nn :o
pointers nns => pointer nn :o
predeclared vbd => predeclar vb :o
primary jj => primary jj :o
productions nns => production nn :o
program nnp => program nnp :o
programs nns => program nn :o
promoted vbn => promot vb :o
properties nns => property nn :o
qualified vbn => qualifi vb :o
raw nnp => raw nnp :o
receive nnp => receive nnp :o
receiving vbg => receiv vb :o
recvexpr nnp => recvexpr nnp :b-gpe
recvstmt nnp => recvstmt nnp :o
redeclaration nn => redeclaration nn :o
regardless nnp => regardless nnp :o
represent jj => represent jj :o
representability nnp => representability nnp :o
return nnp => return nnp :o
round nnp => round nnp :o
rounding vbg => round vb :o
run-time jj => run-time jj :o
rune nnp => rune nnp :o
second nnp => second nnp :o
section nn => section nn :o
see nnp => see nnp :b-person
select jj => select jj :o
selectors nns => selector nn :o
semicolons nnps => semicolon nn :o
send jj => send jj :o
sending vbg => send vb :o
several jj => several jj :o
shifts nns => shift nn :o
short nnp => short nnp :o
shortvardecl nnp => shortvardecl nnp :o
similarly rb => similarly rb :o
simple jj => simple jj :o
size nnp => size nnp :b-person
slice nnp => slice nnp :o
source nnp => source nnp :b-gpe
specific jj => specific jj :o
specifically rb => specifically rb :o
standard nnp => standard nnp :o
statements nns => statement nn :o
string vbg => string vb :o
strings nns => string nn :o
struct nn => struct nn :o
structured nnp => structured nnp :o
such jj => such jj :o
suppose vb => suppose vb :o
switch nnp => switch nnp :b-gpe
switch vb => switch vb :o
system nn => system nn :o
taking vbg => take vb :o
terminating vbg => termin vb :o
there ex => there ex :o
thus nnp => thus nnp :o
together rb => together rb :o
tokens jj => tokens jj :b-gpe
type nnp => type nnp :b-person
typename nn => typename nn :o
typename nnp => typename nnp :b-gpe
typespec nnp => typespec nnp :b-gpe
typeswitchcase nnp => typeswitchcase nnp :o
typeswitchguard nnp => typeswitchguard nnp :b-gpe
types vbz => type vb :o
utf-8 jj => utf-8 jj :o
utf-8 nnp => utf-8 nnp :b-gpe
utf-8-encoded jj => utf-8-encoded jj :o
utf-8-encoded nnp => utf-8-encoded nnp :o
unary nnp => unary nnp :o
unicode nnp => unicode nnp :b-gpe
uniqueness nnp => uniqueness nnp :o
untyped jj => untyped jj :o
values nns => value nn :o
varspec nnp => varspec nnp :b-gpe
variable jj => variable jj :o
variables nns => variable nn :o
white nnp => white nnp :b-person
absent jj => absent jj :o
accent nn => accent nn :o
accented jj => accented jj :o
accept vb => accept vb :o
accepts vbz => accept vb :o
access nn => access nn :o
accessed vbn => access vb :o
accesses vbz => access vb :o
accessible jj => accessible jj :o
accommodate vb => accommodate vb :o
according vbg => accord vb :o
accurately rb => accurately rb :o
act vbp => act vb :o
acts vbz => act vb :o
actual jj => actual jj :o
add vb => add vb :o
added vbn => ad vb :o
adding vbg => ad vb :o
addition nn => addition nn :o
additional jj => additional jj :o
additionally rb => additionally rb :o
address nn => address nn :o
addressability nn => addressability nn :o
addressable jj => addressable jj :o
addressed vbn => address vb :o
addresses nns => address nn :o
advance vb => advance vb :o
advances nns => advance nn :o
affect vbp => affect vb :o
alias nn => alias nn :o
aligned vbn => align vb :o
alignment nn => alignment nn :o
all pdt => all pdt :o
allocated vbn => alloc vb :o
allocates vbz => alloc vb :o
allocating vbg => alloc vb :o
allow vbp => allow vb :o
allowed vbn => allow vb :o
allowing vbg => allow vb :o
allows vbz => allow vb :o
alone rb => alone rb :o
already rb => already rb :o
also rb => also rb :o
alternatives nns => alternative nn :o
always rb => always rb :o
ambiguity nn => ambiguity nn :o
analysis nn => analysis nn :o
analyzed vbn => analyz vb :o
anew rb => anew rb :o
annotated vbn => annot vb :o
anonymous jj => anonymous jj :o
anywhere rb => anywhere rb :o
appear vbp => appear vb :o
appears vbz => appear vb :o
appends vbz => append vb :o
applied vbd => appli vb :o
applies nns => apply nn :o
apply rb => apply rb :o
apply vbp => appli vb :o
applying vbg => appli vb :o
arbitrary jj => arbitrary jj :o
architecture nn => architecture nn :o
architecture-independent jj => architecture-independent jj :o
architectures vbz => architectur vb :o
argument nn => argument nn :o
arguments nns => argument nn :o
arises nns => arise nn :o
arithmetic jj => arithmetic jj :o
arithmetic nn => arithmetic nn :o
array nn => array nn :o
array vb => array vb :o
arrays nns => array nn :o
assemble jj => assemble jj :o
assembly nn => assembly nn :o
assertion nn => assertion nn :o
assertions nns => assertion nn :o
asserts vbz => assert vb :o
assign vb => assign vb :o
assignable jj => assignable jj :o
assigned vbn => assign vb :o
assigning vbg => assign vb :o
assignment nn => assignment nn :o
assignments nns => assignment nn :o
assigns vbz => assign vb :o
assist vb => assist vb :o
associate nn => associate nn :o
associated jj => associated jj :o
associates vbz => associ vb :o
associativity nn => associativity nn :o
assume vb => assume vb :o
assumption nn => assumption nn :o
attempt nn => attempt nn :o
attempting vbg => attempt vb :o
attribute nn => attribute nn :o
automatic jj => automatic jj :o
automatically rb => automatically rb :o
available jj => available jj :o
avoid vb => avoid vb :o
back rb => back rb :o
backslash jj => backslash jj :o
backslash nn => backslash nn :o
backslashes nns => backslash nn :o
backward jj => backward jj :o
base nn => base nn :o
becomes vbz => becom vb :o
been vbn => been vb :o
beginning vbg => begin vb :o
begins nns => begin nn :o
begins vbz => begin vb :o
behave vbp => behav vb :o
behavior nn => behavior nn :o
belonging vbg => belong vb :o
belongs nns => belong nn :o
belongs vbz => belong vb :o
bidirectional jj => bidirectional jj :o
binary jj => binary jj :o
bind vbp => bind vb :o
binding nn => binding nn :o
binding vbg => bind vb :o
binds vbz => bind vb :o
bit nn => bit nn :o
bits nns => bit nn :o
bitwise nn => bitwise nn :o
blank jj => blank jj :o
block nn => block nn :o
blocking vbg => block vb :o
blocks nns => block nn :o
blocks vbz => block vb :o
body nn => body nn :o
boolean jj => boolean jj :o
boolean nn => boolean nn :o
booleans nns => boolean nn :o
bootstrapping vbg => bootstrap vb :o
bound nn => bound nn :o
bound vbn => bound vb :o
bounds nns => bound nn :o
brace nn => brace nn :o
brace-bound jj => brace-bound jj :o
braces nns => brace nn :o
brackets nns => bracket nn :o
branch nn => branch nn :o
branches nns => branch nn :o
break nn => break nn :o
breaking vbg => break vb :o
broken vbn => broken vb :o
buffer nn => buffer nn :o
buffered jj => buffered jj :o
build jj => build jj :o
built-in jj => built-in jj :o
byte nn => byte nn :o
byte-wise nn => byte-wise nn :o
bytes nns => byte nn :o
calculated vbn => calcul vb :o
call nn => call nn :o
callable jj => callable jj :o
called vbd => call vb :o
called vbn => call vb :o
caller nn => caller nn :o
callers nns => caller nn :o
calling vbg => call vb :o
calls nns => call nn :o
calls vbz => call vb :o
cannot vbp => cannot vb :o
canonicalized vbn => canonic vb :o
capacity nn => capacity nn :o
carriage nn => carriage nn :o
carried vbn => carri vb :o
case nn => case nn :o
cases nns => case nn :o
categories nns => category nn :o
category nn => category nn :o
cause vb => cause vb :o
causes vbz => caus vb :o
causing vbg => caus vb :o
certain jj => certain jj :o
change vbp => chang vb :o
changes vbz => chang vb :o
channel nn => channel nn :o
channels nns => channel nn :o
channels vb => channels vb :o
character nn => character nn :o
characters nns => character nn :o
choice nn => choice nn :o
chooses vbz => choos vb :o
chosen vbn => chosen vb :o
circumstances nns => circumstance nn :o
class nn => class nn :o
classes nns => class nn :o
clause nn => clause nn :o
clauses nns => clause nn :o
closed jj => closed jj :o
closed vbn => close vb :o
closing vbg => close vb :o
closures nns => closure nn :o
code nn => code nn :o
collectively rb => collectively rb :o
combine vb => combine vb :o
combining vbg => combin vb :o
come vb => come vb :o
comment nn => comment nn :o
comments nns => comment nn :o
common jj => common jj :o
communicate vb => communicate vb :o
communication nn => communication nn :o
communications nns => communication nn :o
compact jj => compact jj :o
comparable jj => comparable jj :o
compare vbp => compar vb :o
compared vbn => compar vb :o
compares vbz => compar vb :o
comparing vbg => compar vb :o
comparison nn => comparison nn :o
comparisons nns => comparison nn :o
compatibility nn => compatibility nn :o
compile jj => compile jj :o
compile-time jj => compile-time jj :o
compiled jj => compiled jj :o
compiler nn => compiler nn :o
compilers nns => compiler nn :o
complement nn => complement nn :o
complete jj => complete jj :o
complete vb => complete vb :o
completeness nn => completeness nn :o
completes vbz => complet vb :o
complex jj => complex jj :o
component nn => component nn :o
components nns => component nn :o
composed vbn => compos vb :o
composes vbz => compos vb :o
composite jj => composite jj :o
comprising vbg => compris vb :o
computation nn => computation nn :o
computed vbn => comput vb :o
computes vbz => comput vb :o
computing vbg => comput vb :o
concatenated vbn => concaten vb :o
concatenating vbg => concaten vb :o
concatenation nn => concatenation nn :o
concrete jj => concrete jj :o
concurrent jj => concurrent jj :o
concurrently rb => concurrently rb :o
condition nn => condition nn :o
conditional jj => conditional jj :o
conditionally rb => conditionally rb :o
conditions nns => condition nn :o
conflict vb => conflict vb :o
consequence nn => consequence nn :o
consider vb => consider vb :o
considerations nns => consideration nn :o
considered vbn => consid vb :o
consist vbp => consist vb :o
consisting vbg => consist vb :o
consists vbz => consist vb :o
constant jj => constant jj :o
constant nn => constant nn :o
constants nns => constant nn :o
constituents nns => constituent nn :o
constrained vbn => constrain vb :o
constraint nn => constraint nn :o
construct nn => construct nn :o
constructed vbn => construct vb :o
construction nn => construction nn :o
constructs vbz => construct vb :o
contain vb => contain vb :o
containing vbg => contain vb :o
contains vbz => contain vb :o
contents nns => content nn :o
context nn => context nn :o
contexts nns => context nn :o
contiguous jj => contiguous jj :o
continue nn => continue nn :o
continue vbp => continu vb :o
contrast nn => contrast nn :o
control nn => control nn :o
control vbp => control vb :o
controlled vbn => control vb :o
controls vbz => control vb :o
convenience nn => convenience nn :o
conventional jj => conventional jj :o
conversion nn => conversion nn :o
conversions nns => conversion nn :o
convert vb => convert vb :o
converted vbn => convert vb :o
converting vbg => convert vb :o
copied vbn => copi vb :o
copies vbz => copi vb :o
copy nn => copy nn :o
copying vbg => copi vb :o
correct jj => correct jj :o
correspond nn => correspond nn :o
corresponding jj => corresponding jj :o
cost nn => cost nn :o
count nn => count nn :o
create vb => create vb :o
created vbn => creat vb :o
creates vbz => creat vb :o
creation nn => creation nn :o
curly rb => curly rb :o
current jj => current jj :o
cycles nns => cycle nn :o
cyclic jj => cyclic jj :o
data nns => data nns :o
decimal jj => decimal jj :o
declaration nn => declaration nn :o
declarations nns => declaration nn :o
declare vb => declare vb :o
declared vbn => declar vb :o
declares vbz => declar vb :o
decrement jj => decrement jj :o
default nn => default nn :o
defaults vbz => default vb :o
defer nn => defer nn :o
deferred jj => deferred jj :o
deferred vbn => defer vb :o
defers vbz => defer vb :o
define vb => define vb :o
defined vbn => defin vb :o
defines vbz => defin vb :o
defining vbg => defin vb :o
definition nn => definition nn :o
definitions nns => definition nn :o
delivered vbn => deliv vb :o
denote vbp => denot vb :o
denoted vbn => denot vb :o
denotes vbz => denot vb :o
denoting vbg => denot vb :o
dependencies nns => dependency nn :o
dependency nn => dependency nn :o
depending vbg => depend vb :o
depends vbz => depend vb :o
depth nn => depth nn :o
dereference vb => dereference vb :o
dereferenced vbn => dereferenc vb :o
derive vb => derive vb :o
derived vbn => deriv vb :o
described vbn => describ vb :o
describes vbz => describ vb :o
descriptor nn => descriptor nn :o
designed vbn => design vb :o
destination nn => destination nn :o
detail nn => detail nn :o
determine vb => determine vb :o
determined vbn => determin vb :o
determines vbz => determin vb :o
deterministically rb => deterministically rb :o
development nn => development nn :o
differ vb => differ vb :o
different jj => different jj :o
differently rb => differently rb :o
differs nns => differ nn :o
digits nns => digit nn :o
direct vb => direct vb :o
direction nn => direction nn :o
directly rb => directly rb :o
directory nn => directory nn :o
disallow vb => disallow vb :o
disallowed vbn => disallow vb :o
disassemble jj => disassemble jj :o
discard vb => discard vb :o
discarded vbn => discard vb :o
discovered vbn => discov vb :o
discussed vbn => discuss vb :o
discussion nn => discussion nn :o
distinct jj => distinct jj :o
divided vbn => divid vb :o
dividend nn => dividend nn :o
division nn => division nn :o
divisor nn => divisor nn :o
do vbp => do vb :o
document nn => document nn :o
documentation nn => documentation nn :o
documented vbn => document vb :o
documents nns => document nn :o
does vbz => doe vb :o
done vbn => done vb :o
double jj => double jj :o
due jj => due jj :o
duplicate nn => duplicate nn :o
dynamic jj => dynamic jj :o
dynamically rb => dynamically rb :o
earlier rbr => earlier rbr :o
earliest jjs => earli jj :o
easy jj => easy jj :o
effect nn => effect nn :o
effects nns => effect nn :o
efficient jj => efficient jj :o
element nn => element nn :o
elementary jj => elementary jj :o
elements nns => element nn :o
elide vb => elide vb :o
elided vbn => elid vb :o
ellipsis nn => ellipsis nn :o
else rb => else rb :o
elsewhere rb => elsewhere rb :o
embed vb => embed vb :o
embedded jj => embedded jj :o
embedding vbg => embed vb :o
embeds vbz => emb vb :o
empty jj => empty jj :o
empty rb => empty rb :o
enables vbz => enabl vb :o
enclosed vbn => enclos vb :o
enclosing vbg => enclos vb :o
encode nn => encode nn :o
encoded vbn => encod vb :o
encoding nn => encoding nn :o
encompasses vbz => encompass vb :o
encounters vbz => encount vb :o
encouraged vbn => encourag vb :o
end nn => end nn :o
ends vbz => end vb :o
enforces vbz => enforc vb :o
enough rb => enough rb :o
ensure vb => ensure vb :o
entering vbg => enter vb :o
entire jj => entire jj :o
entirely rb => entirely rb :o
entities nns => entity nn :o
entity nn => entity nn :o
entries nns => entry nn :o
entry nn => entry nn :o
enumerations nns => enumeration nn :o
environments nns => environment nn :o
equal jj => equal jj :o
equal vb => equal vb :o
equality nn => equality nn :o
equals vbz => equal vb :o
equivalent jj => equivalent jj :o
equivalent nn => equivalent nn :o
erroneous jj => erroneous jj :o
erroneously rb => erroneously rb :o
error nn => error nn :o
errors nns => error nn :o
escapes nns => escape nn :o
evaluate vbp => evalu vb :o
evaluated vbn => evalu vb :o
evaluates vbz => evalu vb :o
evaluating vbg => evalu vb :o
evaluation nn => evaluation nn :o
even rb => even rb :o
events nns => event nn :o
exact jj => exact jj :o
exactly rb => exactly rb :o
example nn => example nn :o
examples nns => example nn :o
exception nn => exception nn :o
exclude vb => exclude vb :o
excludes vbz => exclud vb :o
execute vb => execute vb :o
executed vbn => execut vb :o
executes nns => execute nn :o
executes vbz => execut vb :o
executing vbg => execut vb :o
execution nn => execution nn :o
exist vb => exist vb :o
existing vbg => exist vb :o
exists vbz => exist vb :o
exits vbz => exit vb :o
exp nn => exp nn :o
explicit jj => explicit jj :o
explicitly rb => explicitly rb :o
exploits vbz => exploit vb :o
exponent nn => exponent nn :o
exported jj => exported jj :o
exported vbn => export vb :o
exports nns => export nn :o
expressed vbn => express vb :o
expression nn => expression nn :o
expressions nns => expression nn :o
extend vb => extend vb :o
extended jj => extended jj :o
extended vbn => extend vb :o
extent nn => extent nn :o
extra jj => extra jj :o
extract vb => extract vb :o
facilities nns => facility nn :o
factor nn => factor nn :o
failure nn => failure nn :o
fall vbp => fall vb :o
false jj => false jj :o
fewer jjr => fewer jjr :o
field nn => field nn :o
fields nns => field nn :o
file nn => file nn :o
files nns => file nn :o
final jj => final jj :o
finally rb => finally rb :o
first-in-first-out jj => first-in-first-out jj :o
fit vb => fit vb :o
fits vbz => fit vb :o
floating vbg => float vb :o
floating-point jj => floating-point jj :o
floating-point nn => floating-point nn :o
flow vb => flow vb :o
flows vbz => flow vb :o
followed vbn => follow vb :o
following vbg => follow vb :o
follows vbz => follow vb :o
forever rb => forever rb :o
form nn => form nn :o
formal jj => formal jj :o
formats nns => format nn :o
formed vbn => form vb :o
forms nns => form nn :o
forms vbp => form vb :o
fraction nn => fraction nn :o
fractional jj => fractional jj :o
full jj => full jj :o
fully rb => fully rb :o
function-local jj => function-local jj :o
functionality nn => functionality nn :o
functions nns => function nn :o
functions—happens nns => functions—happen nn :o
further rbr => further rbr :o
fused jj => fused jj :o
fused vbn => fuse vb :o
fusion nn => fusion nn :o
garbage-collected jj => garbage-collected jj :o
general jj => general jj :o
general-purpose jj => general-purpose jj :o
generated vbn => generat vb :o
generates vbz => generat vb :o
generator nn => generator nn :o
get vbp => get vb :o
given vbn => given vb :o
gives vbz => give vb :o
goroutine nn => goroutine nn :o
goroutines nns => goroutine nn :o
goto nn => goto nn :o
grammar nn => grammar nn :o
greater jjr => greater jjr :o
group nn => group nn :o
grow vb => grow vb :o
guaranteed vbn => guarante vb :o
guarantees nns => guarantee nn :o
guard nn => guard nn :o
halves nns => half nn :o
hand nn => hand nn :o
handling vbg => handl vb :o
happen vb => happen vb :o
have vb => have vb :o
hexadecimal jj => hexadecimal jj :o
hexadecimal nn => hexadecimal nn :o
hidden jj => hidden jj :o
hierarchy nn => hierarchy nn :o
high jj => high jj :o
higher-dimensional jj => higher-dimensional jj :o
highest jjs => high jj :o
hint nn => hint nn :o
hold vb => hold vb :o
holding vbg => hold vb :o
holds vbz => hold vb :o
horizontal jj => horizontal jj :o
however rb => however rb :o
hypothetical jj => hypothetical jj :o
identical jj => identical jj :o
identified vbn => identifi vb :o
identifier nn => identifier nn :o
identifiers nns => identifier nn :o
identify vb => identify vb :o
identifying vbg => identifi vb :o
identity nn => identity nn :o
idiomatic jj => idiomatic jj :o
ignore vb => ignore vb :o
ignored vbn => ignor vb :o
ignoring vbg => ignor vb :o
illegal jj => illegal jj :o
illustrates vbz => illustr vb :o
imaginary jj => imaginary jj :o
immaterial jj => immaterial jj :o
immediately rb => immediately rb :o
immutable jj => immutable jj :o
implement vb => implement vb :o
implementation nn => implementation nn :o
implementation-defined jj => implementation-defined jj :o
implementation-dependent jj => implementation-dependent jj :o
implementation-specific jj => implementation-specific jj :o
implementations nns => implementation nn :o
implemented vbd => implement vb :o
implements vbz => implement vb :o
implicit jj => implicit jj :o
implicit nn => implicit nn :o
implicitly rb => implicitly rb :o
implied vbn => impli vb :o
import nn => import nn :o
imported vbn => import vb :o
importing nn => importing nn :o
imports nns => import nn :o
imports vbz => import vb :o
impossible jj => impossible jj :o
include vb => include vb :o
included vbn => includ vb :o
includes vbz => includ vb :o
including vbg => includ vb :o
inclusive jj => inclusive jj :o
incoming nn => incoming nn :o
increasing vbg => increas vb :o
increment nn => increment nn :o
incur vb => incur vb :o
independent jj => independent jj :o
independently rb => independently rb :o
index nn => index nn :o
indexed vbn => index vb :o
indexing nn => indexing nn :o
indicate vb => indicate vb :o
indication nn => indication nn :o
indices nns => index nn :o
indirection nn => indirection nn :o
indirections nns => indirection nn :o
indirectly rb => indirectly rb :o
indirects vbz => indirect vb :o
individual jj => individual jj :o
individually rb => individually rb :o
infinite jj => infinite jj :o
infinity nn => infinity nn :o
influence nn => influence nn :o
informally rb => informally rb :o
information nn => information nn :o
inhabit nn => inhabit nn :o
inherit vb => inherit vb :o
init nn => init nn :o
initial jj => initial jj :o
initialization nn => initialization nn :o
initialization—variable jj => initialization—variable jj :o
initialize vb => initialize vb :o
initialized vbn => initi vb :o
initializer jj => initializer jj :o
initializers nns => initializer nn :o
initializes vbz => initi vb :o
initializing vbg => initi vb :o
inner jj => inner jj :o
innermost nn => innermost nn :o
input nn => input nn :o
inserted vbn => insert vb :o
insertion nn => insertion nn :o
installed vbd => instal vb :o
instance nn => instance nn :o
instead rb => instead rb :o
instruction nn => instruction nn :o
instructions nns => instruction nn :o
int nn => int nn :o
integer jj => integer jj :o
integer nn => integer nn :o
integers nns => integer nn :o
integral jj => integral jj :o
integrated jj => integrated jj :o
interface nn => interface nn :o
interface-valued jj => interface-valued jj :o
interfaces nns => interface nn :o
intermediate jj => intermediate jj :o
internal jj => internal jj :o
interpretation nn => interpretation nn :o
interpreted vbn => interpret vb :o
introduce vb => introduce vb :o
introduced vbn => introduc vb :o
introducing vbg => introduc vb :o
invalid jj => invalid jj :o
inverse nn => inverse nn :o
invocation nn => invocation nn :o
invocations nns => invocation nn :o
invoke vb => invoke vb :o
invoked vbn => invok vb :o
invokes vbz => invok vb :o
invoking vbg => invok vb :o
involves vbz => involv vb :o
involving vbg => involv vb :o
iota nn => iota nn :o
irrelevant jj => irrelevant jj :o
irrespective nn => irrespective nn :o
issues nns => issue nn :o
item nn => item nn :o
items nns => item nn :o
iterates vbz => iter vb :o
iteration nn => iteration nn :o
iterations nns => iteration nn :o
jump nn => jump nn :o
just rb => just rb :o
key jj => key jj :o
key nn => key nn :o
keys nns => key nn :o
keyword nn => keyword nn :o
keywords nns => keyword nn :o
kind nn => kind nn :o
kinds nns => kind nn :o
known vbn => known vb :o
label nn => label nn :o
labeled jj => labeled jj :o
labeled vbn => label vb :o
labeling vbg => label vb :o
labels nns => label nn :o
language nn => language nn :o
large jj => large jj :o
larger jjr => larger jjr :o
largest jjs => larg jj :o
last jj => last jj :o
later rb => later rb :o
launch vb => launch vb :o
leading vbg => lead vb :o
least jjs => least jjs :o
left nn => left nn :o
left- jj => left- jj :o
left-hand jj => left-hand jj :o
left-to-right jj => left-to-right jj :o
leftmost nn => leftmost nn :o
legal jj => legal jj :o
legally rb => legally rb :o
length nn => length nn :o
lengths nns => length nn :o
less jjr => less jjr :o
letter nn => letter nn :o
letters nns => letter nn :o
level nn => level nn :o
levels nns => level nn :o
lexical jj => lexical jj :o
lexically rb => lexically rb :o
light-weight jj => light-weight jj :o
limit nn => limit nn :o
limited jj => limited jj :o
limits nns => limit nn :o
line nn => line nn :o
linguistic jj => linguistic jj :o
linking vbg => link vb :o
list nn => list nn :o
listed vbn => list vb :o
listing vbg => list vb :o
lists nns => list nn :o
literal jj => literal jj :o
literal nn => literal nn :o
literally rb => literally rb :o
literals nns => literal nn :o
local jj => local jj :o
location nn => location nn :o
logical jj => logical jj :o
long rb => long rb :o
longest jjs => long jj :o
looks vbz => look vb :o
loop nn => loop nn :o
low jj => low jj :o
low-level jj => low-level jj :o
lower jjr => lower jjr :o
lower-case jj => lower-case jj :o
made vbn => made vb :o
main jj => main jj :o
make vb => make vb :o
manage vb => manage vb :o
management nn => management nn :o
mantissa nn => mantissa nn :o
manual nn => manual nn :o
manually rb => manually rb :o
map nn => map nn :o
maps nns => map nn :o
mark nn => mark nn :o
marked vbn => mark vb :o
marking vbg => mark vb :o
mask nn => mask nn :o
match vb => match vb :o
match vbp => match vb :o
matches nns => match nn :o
matching vbg => match vb :o