-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdic.ja.js
1173 lines (1173 loc) · 27.8 KB
/
dic.ja.js
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
var dic =
{
"EN": "JA",
"FALSE": "",
"TRUE": "",
"absent": "無い、存在しない",
"accent": "アクセント",
"accented": "アクセントつきの",
"accept": "受け付ける、受理する",
"access": "",
"accessible": "アクセス可能",
"accommodate": "収容する",
"accord": "according to 〜に応じて",
"accordingly": "応じて、対応して",
"accurately": "正確に",
"act": "振る舞う",
"actual": "実際の",
"add": "",
"addition": "追加",
"additional": "追加の",
"additionally": "加えて",
"address": "",
"addressability": "アドレス可能性",
"addressable": "アドレス可能",
"adjust": "調整する",
"advance": "",
"affect": "に影響する",
"alert": "",
"alias": "別名",
"align": "揃える",
"alignment": "揃えること",
"all": "",
"allocate": "割り当てる",
"allocation": "割当",
"allow": "許可する、可能にする",
"alone": "",
"already": "",
"also": "",
"alternation": "〔二者間の〕交代",
"alternative": "代わりのもの、選択肢",
"always": "",
"ambiguity": "曖昧さ",
"analysis": "解析",
"analyze": "分析する、解析する",
"and": "",
"anew": "",
"annotate": "注釈のついた",
"anonymous": "無名",
"anywhere": "どこでも",
"appear": "現れる",
"append": "",
"apply": "適用する",
"approximately": "およそ",
"arbitrary": "任意の",
"arbitrarytype": "任意型",
"architecture": "",
"architecture-independent": "アーキテクチャに依存しない",
"argument": "実引数",
"arise": "",
"arithmetic": "算術",
"array": "配列",
"ascii": "",
"assemble": "",
"assembly": "",
"assert": "",
"assertion": "アサーション",
"assign": "代入する",
"assignability": "代入可能性",
"assignable": "代入可能",
"assignment": "代入",
"assignments": "代入",
"assist": "",
"associate": "結びつける、関連付ける",
"associated": "関連付けられた",
"associativity": "結合性",
"assume": "仮定する、想定する",
"assumption": "仮定、想定",
"attempt": "",
"attribute": "",
"automatic": "自動の",
"automatically": "自動的に",
"available": "",
"avoid": "避ける、回避する",
"back": "",
"backslash": "",
"backspace": "",
"backus-naur": "バッカス・ナウア (考案者のジョン・バッカスさんとピーター・ナウアさん)",
"backward": "",
"base": "基となる、基底(の)",
"basic": "基本的な、基礎的な",
"be": "",
"become": "",
"begin": "",
"behave": "振る舞う",
"behavior": "振る舞い",
"bell": "",
"belong": "",
"bidirectional": "双方向の",
"binary": "2進数",
"bind": "束ねる/くっつける",
"binding": "",
"bit": "",
"bitwise": "bitに関する",
"blank": "\"_\"",
"block": "ブロック、ブロックする",
"blocks": "",
"body": "",
"bool": "",
"boolean": "真偽の",
"bootstrap": "",
"bootstrapping": "",
"bound": "制限する、結び付けられて",
"brace": "括弧",
"brace-bound": "",
"bracket": "",
"branch": "枝、分岐",
"break": "",
"buffer": "",
"build": "",
"built-in": "組み込みの",
"byte": "",
"byte-wise": "",
"calculate": "計算する",
"call": "呼び出し",
"callable": "",
"caller": "呼び出し側",
"calling": "",
"camelcase": "キャメルケース",
"cannot": "",
"canonicalized": "正規化する",
"cap": "",
"capacity": "容量",
"carriage": "",
"carry": "",
"case": "",
"category": "",
"cause": "起こす",
"certain": "",
"chan": "",
"change": "",
"channel": "",
"channels": "",
"character": "文字",
"choice": "",
"choose": "",
"circumstance": "",
"class": "分類",
"clause": "句、節",
"clear": "",
"close": "",
"closed": "",
"closing": "",
"closure": "",
"collectively": "",
"combine": "合体する、組み合わせる",
"come": "",
"comma": "",
"comment": "",
"common": "",
"communicate": "通信する",
"communication": "通信",
"compact": "コンパクト",
"comparable": "比較可能",
"compare": "比較する",
"comparison": "比較",
"compatibility": "互換性",
"compile": "",
"compile-time": "",
"compiler": "",
"complement": "",
"complete": "完全な",
"completely": "完全に",
"completeness": "",
"complex": "複素数、複文の",
"complex128": "",
"complex64": "",
"complext": "",
"component": "構成要素",
"compose": "構成する",
"composite": "複合",
"computation": "計算",
"compute": "計算する",
"computer": "",
"concatenate": "連結(する)",
"concatenation": "結合、連接",
"concrete": "具体的な/具象的な",
"concurrent": "並行",
"concurrently": "並行して",
"condition": "条件",
"conditional": "条件付き、条件的",
"conditionally": "",
"conflict": "",
"consequence": "結果",
"consequently": "結果として",
"consider": "考える、みなす",
"consideration": "考慮",
"consist": "構成される",
"consisting": "of 〜、〜で構成される",
"const": "",
"constant": "定数",
"constituent": "構成要素",
"constrain": "",
"constraint": "制約",
"construct": "作る、構成体",
"construction": "構築",
"constspec": "",
"contain": "含む",
"content": "",
"context": "文脈、背景",
"contiguous": "",
"continue": "",
"contrast": "対比する、対比",
"control": "制御する",
"convenience": "",
"conventional": "慣習的",
"conversion": "変換",
"convert": "変換する",
"copy": "",
"core": "",
"correct": "",
"correspond": "照応する",
"corresponding": "対応する",
"cost": "",
"count": "",
"create": "",
"creation": "",
"curly": "",
"current": "",
"cycle": "",
"cyclic": "循環的",
"data": "",
"decimal": "10進数",
"declaration": "宣言",
"declare": "宣言する",
"decrement": "減少する、させる",
"deduce": "推論する、推定する",
"default": "",
"defer": "",
"deferred": "遅延実行された",
"define": "定義する",
"definition": "定義",
"delete": "",
"deletion": "",
"deliver": "",
"denote": "指す、示す、表す",
"depend": "依存する",
"dependency": "依存、依存関係",
"depth": "",
"dereference": "デリファレンス",
"dereferenced": "デリファレンスされた",
"derive": "派生する",
"describe": "記述する",
"descriptor": "記述子",
"design": "設計(する)",
"destination": "行き先、目的地",
"detail": "",
"determine": "決定する",
"deterministically": "決定論的に",
"development": "開発",
"differ": "",
"difference": "減算、差異",
"different": "",
"differently": "",
"digit": "数字、数値",
"direct": "",
"direction": "方向",
"directional": "単方向の、有向の",
"directly": "直接",
"directory": "",
"disallow": "許可しない",
"disassemble": "分解する",
"discard": "捨てる",
"discover": "",
"discuss": "",
"discussion": "",
"disjoint": "[数学] 素集合、交わりを持たない",
"disregard": "無視する、考慮しない",
"distinct": "区別された/独立した",
"divide": "割る、分割する",
"dividend": "",
"division": "",
"divisor": "",
"do": "",
"document": "文書",
"documentation": "文書",
"double": "2倍にする",
"due": "",
"duplicate": "",
"dynamic": "動的",
"dynamically": "",
"earli": "",
"earlier": "",
"easy": "",
"ebnf": "拡張バッカスナウア記法",
"effect": "",
"efficient": "効率のよい",
"element": "要素",
"elementary": "初歩的な",
"elide": "省略する",
"ellipsis": "省略記号(...)",
"else": "",
"elsewhere": "",
"embed": "埋め込む",
"embedded": "埋め込まれた、組み込みの",
"embeddedfield": "",
"empty": "空の",
"enable": "",
"enclose": "囲う",
"encode": "符号化する",
"encoding": "",
"encompass": "",
"encounter": "出会う",
"encourage": "推奨する",
"end": "",
"enforce": "強制する、遵守させる",
"enough": "",
"ensure": "保証する",
"enter": "",
"entire": "",
"entirely": "",
"entity": "実体、存在物",
"entry": "項目",
"enumeration": "列挙、目録",
"environment": "環境",
"equal": "等しい",
"equality": "同一性、等式",
"equivalent": "等価",
"erroneous": "誤った、間違いの",
"erroneously": "誤って",
"error": "",
"escape": "",
"evaluate": "評価する",
"evaluation": "評価",
"even": "",
"event": "",
"exact": "",
"exactly": "正確に",
"example": "",
"except": "を除いて",
"exception": "例外",
"exclude": "除外する",
"excluding": "除外する",
"execute": "実行する",
"execution": "実行",
"exist": "",
"exit": "",
"exp": "",
"explicit": "明示的な",
"explicitly": "明示的に",
"exploit": "不当に利用する",
"exponent": "指数",
"export": "",
"exported": "",
"express": "",
"expression": "式",
"expressionlist": "",
"extend": "拡張する",
"extended": "拡張された",
"extent": "",
"extra": "",
"extract": "抽出する",
"facility": "施設、設備",
"factor": "",
"fail": "",
"failure": "",
"fall": "",
"feed": "",
"fewer": "",
"field": "",
"file": "",
"final": "",
"finally": "",
"find": "",
"finite": "有限",
"first": "",
"first-in-first-out": "先入先出法",
"fit": "",
"float": "",
"float32": "",
"float64": "",
"floating-point": "浮動小数点",
"floatt": "",
"flow": "",
"fma": "",
"follow": "下記の、次に続く、追従する",
"following": "下記の、次に続く、追従する",
"forclause": "",
"forever": "",
"form": "形式、形態、形作る",
"formal": "",
"format": "",
"former": "前者",
"fraction": "小数",
"fractional": "小数の",
"full": "",
"fully": "完全に",
"func": "",
"function": "",
"function-local": "",
"functionality": "",
"functions—happen": "",
"further": "さらに、さらなる、それ以上",
"fuse": "",
"fused": "",
"fusion": "融合",
"garbage-collected": "",
"general": "一般",
"general-purpose": "汎用の",
"generally": "一般的に",
"generate": "生成する",
"generator": "",
"generic": "一般的な、包括的な、総称の",
"get": "",
"give": "",
"given": "与えられた",
"goroutine": "",
"grammar": "文法",
"graphic": "",
"greater": "",
"group": "",
"grouping": "",
"grow": "",
"guarantee": "保証する",
"guard": "",
"half": "",
"hand": "",
"handling": "",
"happen": "",
"have": "",
"here": "",
"hexadecimal": "16進数",
"hidden": "",
"hierarchy": "階層",
"high": "",
"higher-dimensional": "より高次元の",
"hint": "",
"hold": "保有する、有効である",
"holder": "",
"holding": "",
"horizontal": "水平",
"however": "",
"hypothetical": "仮定の",
"identical": "同一の(である)",
"identifier": "識別子",
"identifierlist": "",
"identify": "同定する、特定する",
"identity": "同一性",
"idiomatic": "",
"ieee": "",
"ignore": "無視する",
"illegal": "文法違反",
"illustrate": "描写する、示す",
"imag": "",
"imaginary": "虚数の",
"imaginarypart": "",
"immaterial": "重要でない",
"immediately": "直後に、直接的に",
"immutable": "不変の",
"implement": "実装する",
"implementation": "実装",
"implementation-defined": "実装依存",
"implementation-dependent": "実装依存",
"implementation-specific": "実装依存/実装固有",
"implicit": "暗黙の",
"implicitly": "暗黙的に",
"imply": "",
"import": "",
"importing": "",
"importpath": "",
"importpaths": "",
"impossible": "",
"include": "",
"inclusive": "含んでいる",
"incoming": "",
"increase": "増加する、昇順の",
"increment": "増加(させる)",
"incur": "",
"independent": "",
"independently": "",
"index": "",
"indexing": "",
"indicate": "指し示す",
"indication": "",
"indirection": "インダイレクション(※C言語のデリファレンスに相当)",
"indirectly": "間接的に",
"indirects": "",
"indistinguishable": "区別できない",
"individual": "個々の、それぞれの",
"individually": "個々に",
"infer": "推論する",
"inference": "推論",
"inferrable": "推論可能な",
"inferred": "推論された",
"infinite": "無限の",
"infinity": "無限大",
"influence": "",
"informally": "非公式に",
"information": "",
"inhabit": "住む",
"inherit": "継承する",
"init": "",
"initial": "初期の",
"initialization": "初期化",
"initialization—variable": "",
"initialize": "初期化する",
"initializer": "初期化子",
"inner": "内側の",
"innermost": "最も内側の",
"input": "",
"insert": "挿入する",
"insertion": "挿入",
"install": "",
"instance": "実例",
"instantiate": "インスタンス化する",
"instantiation": "インスタンス化",
"instead": "",
"instruction": "命令",
"int": "",
"int16": "",
"int32": "",
"int64": "",
"int8": "",
"integer": "整数",
"integertype": "",
"integral": "整数の、積分の",
"integrated": "統合された",
"interface": "",
"interface-valued": "",
"interface{}": "",
"intermediate": "中間の、中級の",
"internal": "",
"interpret": "解釈する",
"interpretation": "解釈",
"interrupt": "中断させる",
"intersection": "[数学] 積集合、共通部分",
"introduce": "導入する",
"introduction": "はじめに、導入",
"invalid": "不正な",
"inverse": "逆にする",
"invocation": "呼び出し",
"invoke": "呼び出す",
"involve": "",
"iota": "イオータ(ギリシャ語のI)",
"irrelevant": "無関係の",
"irrespective": "に関係なく",
"issue": "",
"item": "",
"iterate": "繰り返す、反復する",
"iteration": "反復、繰り返し",
"jump": "",
"just": "",
"key": "",
"keyword": "",
"keywords": "予約語",
"kind": "",
"know": "",
"known": "",
"label": "",
"labeled": "ラベル付き",
"labels": "",
"language": "言語",
"larg": "",
"large": "",
"larger": "",
"last": "",
"later": "",
"latter": "後者",
"launch": "",
"lead": "",
"least": "",
"leave": "",
"left": "",
"left-": "",
"left-hand": "左辺",
"left-to-right": "",
"leftmost": "最も左の",
"legal": "(文法的に)適格",
"legally": "",
"len": "",
"length": "",
"less": "",
"letter": "文字",
"level": "",
"lexical": "字句的",
"lexically": "辞書的に、語彙的に",
"lib/math": "",
"light-weight": "",
"limit": "",
"limited": "",
"line": "",
"linguistic": "言語上の",
"link": "",
"list": "リスト、列挙する",
"listing": "",
"literal": "",
"literally": "文字通りに",
"literaltype": "",
"ll": "",
"lm": "",
"lo": "",
"local": "",
"location": "",
"logical": "論理の、論理的",
"long": "",
"look": "",
"loop": "",
"loosely": "",
"lose": "",
"low": "",
"low-level": "",
"lower": "下方の、小文字の",
"lower-case": "小文字",
"lt": "",
"lu": "",
"lu.": "",
"m.sin": "",
"main": "",
"make": "",
"manage": "",
"management": "管理",
"manipulate": "操作する",
"mantissa": "仮数(浮動小数点の小数部)",
"manual": "マニュアル、手動",
"manually": "",
"map": "",
"mark": "",
"marker": "",
"marking": "",
"mask": "マスク、隠す",
"match": "一致する、マッチさせる",
"matching": "",
"math.sin": "",
"matter": "",
"maximum": "",
"mean": "",
"meaning": "",
"measure": "",
"mechanism": "仕組み、機構",
"member": "",
"memory": "",
"meta-)type": "",
"method": "",
"mind": "",
"minimal": "",
"minimum": "最小の",
"miss": "欠ける",
"missing": "欠けている、存在しない",
"mix": "",
"modify": "",
"modulo": "",
"moment": "",
"more": "",
"moreover": "その上",
"most": "",
"multi-byte": "",
"multi-character": "",
"multi-dimensional": "",
"multi-valued": "多値の",
"multi-variable": "多値",
"multi-way": "多分岐",
"multiple": "複数の",
"multiplication": "乗算",
"multiply": "掛け算する",
"n": "",
"n't": "",
"n-bit": "",
"n]e": "",
"n]t": "",
"name": "",
"nan": "",
"nd": "",
"near": "",
"necessary": "",
"negation": "否定",
"negative": "負の",
"nested": "入れ子",
"never": "",
"new": "",
"newline": "改行",
"next": "",
"nil": "",
"nn": "",
"nnn": "",
"no-op": "",
"non-": "",
"non-blank": "\"_\" でない",
"non-complex": "複素数でない(実数の)",
"non-composite": "",
"non-constant": "非定数",
"non-decimal": "",
"non-empty": "",
"non-exported": "",
"non-generic": "",
"non-interface": "",
"non-negative": "非負",
"non-terminal": "非終端記号",
"non-type": "",
"non-variadic": "",
"normal": "",
"normally": "",
"not": "",
"not-a-number": "",
"notation": "記法",
"note": "",
"nothing": "",
"nth": "N番目の",
"nul": "",
"number": "",
"numbered": "",
"numeric": "数の、数値の",
"object": "",
"obtain": "得る",
"occupy": "占める",
"occur": "起こる、発生する",
"occurs": "起こる、発生する",
"octal": "8進数の",
"offset": "",
"omit": "省略する",
"once": "",
"one-dimensional": "1次元の",
"only": "",
"op": "",
"opening": "",
"operand": "被演算子",
"operate": "働く、作動する",
"operation": "演算、操作",
"operator": "演算子",
"oppose": "反対する、対置する",
"optimize": "最適化する",
"option": "",
"optional": "必須でない",
"optionally": "",
"or": "",
"order": "順序",
"ordering": "",
"ordinary": "",
"organization": "",
"original": "",
"originally": "",
"other": "",
"otherwise": "さもなければ",
"overflow": "",
"overlap": "重なる/重なり",
"override": "",
"overwrite": "",
"own": "",
"package": "",
"package-level": "",
"packagename": "",
"pair": "",
"pairs": "",
"pairwise": "",
"panic": "",
"panicking": "",
"parameter": "仮引数",
"parenthesis": "丸かっこ",
"parenthesize": "丸かっこで囲う",
"parse": "構文解析する",
"parsing": "構文解析の",
"part": "",
"partial": "",
"partially": "",
"particular": "",
"pass": "",
"passing": "",
"path": "",
"perform": "",
"period": "",
"permissible": "",
"permit": "許す",
"phase": "段階",
"place": "",
"placeholder": "",
"plain": "",
"point": "",
"pointer": "",
"pointer-receiver": "",
"portability": "移植性",
"portable": "",
"position": "",
"possible": "",
"possibly": "ことによると、可能性としてあり得ることに",
"post": "",
"power": "累乗",
"pre-go1.18": "",
"precede": "先行する",
"precedence": "優先順位",
"precise": "正確な",
"precisely": "正確に",
"precision": "精度",
"predeclared": "事前宣言された",
"predeclares": "事前宣言する",
"prefix": "接頭辞",
"present": "在る、現在の",
"prevent": "防ぐ",
"previous": "前の",
"previously": "前に、以前に",
"primary": "主要な、初等の、第一の",
"prime": "",
"print": "",
"printing": "",
"println": "",
"proceed": "進む",
"process": "",
"produce": "産出する",
"product": "[数学] 積",
"production": "生成規則",
"production_name": "",
"program": "",
"program-defined": "",
"programming": "プログラミング",
"promote": "昇格する",
"property": "特徴、性質",
"prose": "文",
"protect": "守る",
"provide": "与える",
"pseudo-random": "疑似ランダム",
"punctuation": "句読点",
"purpose": "",
"qualified": "修飾された",
"qualifier": "",
"qualify": "修飾する",
"queue": "キュー",
"quite": "",
"quote": "",
"quotient": "",
"radix": "基数",
"raise": "",
"range": "範囲",
"rare": "まれ",
"rather": "",
"raw": "生の",
"re-use": "",
"re-used": "",
"reach": "",
"reachable": "到達可能",
"read": "",
"readability": "可読性",
"ready": "",
"real": "",
"receife": "",
"receive": "",
"receive-only": "",
"received": "",
"receiver": "",
"recent": "",
"record": "",
"recover": "",
"recursively": "再帰的に",
"recvexpr": "",
"recvstmt": "",
"redeclaration": "再宣言",
"redeclare": "再宣言する",
"redeclared": "",
"refer": "参照する",
"reference": "参照",
"reflect": "",
"reflection": "リフレクション、反映",
"regardless": "〜に関わらず",
"regular": "普通の、正規の",
"related": "",
"relation": "",
"relationship": "",
"relative": "相対的",
"release": "",
"relevant": "関係する",
"rely": "",
"remain": "",
"remainder": "余り",
"remove": "",
"repeat": "",
"repeated": "",
"repeatedly": "",
"repetition": "繰り返し",
"replace": "",
"replacement": "",
"report": "",
"reporting": "",
"repository": "",
"represent": "",
"representability": "",
"representable": "表現可能",
"representation": "表現",
"representative": " 代表的な, 典型的な",
"reproducible": "再現可能",
"require": "",
"requirement": "",
"reserf": "",
"reserve": "予約する",
"resolve": "解決する",
"respective": "それぞれの",
"respectively": "それぞれ",
"restrict": "制限する",
"restriction": "制限",
"result": "結果、戻り値",
"resume": "再開する",
"retrieve": "取り出す",
"return": "",
"reverse": "",
"reviewer": "",
"rewrite": "",
"right": "",
"right-hand": "右辺",
"right-hand-side": "右辺",
"room": "余地",
"round": "",
"round-to-even": "偶数への丸め、偶数丸め",
"rounding": "",
"rule": "",
"run": "",
"run-time": "実行時の(に)",
"rune": "ルーン(神秘文字)",
"running": "",
"safety": "",
"satisfied": "満たされる、満足させられる",
"satisfy": "満たす、満足させる",
"save": "",
"say": "",
"scale": "規模を変更する",
"scope": "",
"scoped": "",
"scoping": "",
"second": "",
"section": "節",
"see": "",
"segment": "切片",
"select": "",
"selection": "選択",
"selector": "",
"semantically": "意味論的に",
"semicolon": "",
"send": "",
"sender": "送信者",
"sent": "",
"separate": "分割する",
"sequence": "連なり、並び",
"sequential": "連続して起こる",
"sequentially": "",
"series": "",
"serve": "働く、用をなす",
"set": "セットする、集合",
"several": "",
"shallowest": "",
"share": "",
"shift": "",
"short": "",
"shorthand": "簡略表現",
"shortvardecl": "",
"show": "",
"side": "",
"side-effect": "副作用",
"sieve": " 篩(ふるい)",
"sign": "符号",
"signature": "シグネチャ",
"significantly": "著しく",
"similar": "似ている、同様の",
"similarly": "同様に",
"simpl": "",
"simple": "",
"simplicity": "単純さ、簡単さ",
"simplify": "",
"sin": "",
"single": "単一の",
"single-character": "",
"single-valued": "単一値",
"site": "",
"size": "",
"skip": "",
"skips": "",
"slice": "スライス/スライスする",
"sliced": "スライスされた",
"slightly": "わずかに",
"snippet": "断片",
"so": "",
"solely": "単に/単独で",
"sometimes": "",
"soon": "",
"source": "元の",
"space": "",
"speak": "",
"spec": "",
"special": "",
"specially": "",
"specific": "特定の",
"specifically": "特に",
"specification": "仕様、仕様書",
"specify": "特定する、指定する、規定する",
"spell": "",
"square": "",
"src": "",
"stand": "",
"standard": "",
"start": "",
"state": "",
"statement": "文",
"static": "静的な",
"stay": "",
"step": "",
"stepwise": "",
"still": "",