pict-section-formeditor 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +118 -0
  3. package/docs/.nojekyll +0 -0
  4. package/docs/README.md +162 -0
  5. package/docs/_sidebar.md +23 -0
  6. package/docs/_topbar.md +5 -0
  7. package/docs/cover.md +12 -0
  8. package/docs/css/docuserve.css +73 -0
  9. package/docs/index.html +39 -0
  10. package/docs/retold-catalog.json +224 -0
  11. package/docs/retold-keyword-index.json +46846 -0
  12. package/example_applications/form_editor/.quackage.json +10 -0
  13. package/example_applications/form_editor/FormEditor-Example-Application.js +226 -0
  14. package/example_applications/form_editor/html/icon-chooser.html +375 -0
  15. package/example_applications/form_editor/html/index.html +54 -0
  16. package/example_applications/form_editor/package.json +50 -0
  17. package/package.json +55 -0
  18. package/sample_manifests/Complex-Table.json +974 -0
  19. package/sample_manifests/Distill-Example.json +200 -0
  20. package/sample_manifests/Gradebook-Assignment.json +38 -0
  21. package/sample_manifests/Gradebook-Student.json +40 -0
  22. package/sample_manifests/Manyfest-Editor.json +347 -0
  23. package/sample_manifests/Simple-Form.json +232 -0
  24. package/sample_manifests/Simple-Table.json +79 -0
  25. package/source/Pict-Section-FormEditor-DefaultConfiguration.js +3321 -0
  26. package/source/Pict-Section-FormEditor.js +35 -0
  27. package/source/providers/Pict-Provider-ChildPictManager-Application.js +40 -0
  28. package/source/providers/Pict-Provider-ChildPictManager.js +238 -0
  29. package/source/providers/Pict-Provider-FormEditorDocumentation.js +356 -0
  30. package/source/providers/Pict-Provider-FormEditorDragDrop.js +535 -0
  31. package/source/providers/Pict-Provider-FormEditorIconography.js +1002 -0
  32. package/source/providers/Pict-Provider-FormEditorManifestOps.js +1443 -0
  33. package/source/providers/Pict-Provider-FormEditorRendering.js +730 -0
  34. package/source/providers/Pict-Provider-FormEditorUtilities.js +862 -0
  35. package/source/providers/Pict-Provider-PreviewCSS.js +42 -0
  36. package/source/views/PictView-FormEditor-InlineEditing.js +309 -0
  37. package/source/views/PictView-FormEditor-InputTypePicker.js +532 -0
  38. package/source/views/PictView-FormEditor-PropertiesPanel.js +7730 -0
  39. package/source/views/PictView-FormEditor.js +681 -0
  40. package/test/Pict-Section-FormEditor_tests.js +4102 -0
  41. package/user-documentation/.pict_documentation_topics.json +695 -0
  42. package/user-documentation/Getting-Started.md +32 -0
  43. package/user-documentation/Groups.md +52 -0
  44. package/user-documentation/Inputs.md +98 -0
  45. package/user-documentation/Sections.md +36 -0
  46. package/user-documentation/Shortcuts.md +44 -0
  47. package/user-documentation/Solver-Expression-Walkthrough.md +176 -0
  48. package/user-documentation/Solver-Expressions-Advanced.md +344 -0
  49. package/user-documentation/Solver-Functions.md +213 -0
  50. package/user-documentation/Solvers.md +81 -0
  51. package/user-documentation/ToC.md +18 -0
  52. package/user-documentation/solverfunctions/abs.md +84 -0
  53. package/user-documentation/solverfunctions/aggregationhistogram.md +83 -0
  54. package/user-documentation/solverfunctions/aggregationhistogrambyobject.md +64 -0
  55. package/user-documentation/solverfunctions/arrayconcat.md +64 -0
  56. package/user-documentation/solverfunctions/avg.md +81 -0
  57. package/user-documentation/solverfunctions/bucketset.md +69 -0
  58. package/user-documentation/solverfunctions/ceil.md +70 -0
  59. package/user-documentation/solverfunctions/cleanvaluearray.md +66 -0
  60. package/user-documentation/solverfunctions/cleanvalueobject.md +68 -0
  61. package/user-documentation/solverfunctions/colorgroupbackground.md +60 -0
  62. package/user-documentation/solverfunctions/colorinputbackground.md +62 -0
  63. package/user-documentation/solverfunctions/colorinputbackgroundtabular.md +64 -0
  64. package/user-documentation/solverfunctions/colorsectionbackground.md +59 -0
  65. package/user-documentation/solverfunctions/compare.md +72 -0
  66. package/user-documentation/solverfunctions/concat.md +73 -0
  67. package/user-documentation/solverfunctions/concatraw.md +73 -0
  68. package/user-documentation/solverfunctions/cos.md +75 -0
  69. package/user-documentation/solverfunctions/count.md +73 -0
  70. package/user-documentation/solverfunctions/countset.md +65 -0
  71. package/user-documentation/solverfunctions/countsetelements.md +63 -0
  72. package/user-documentation/solverfunctions/createarrayfromabsolutevalues.md +63 -0
  73. package/user-documentation/solverfunctions/createvalueobjectbyhashes.md +69 -0
  74. package/user-documentation/solverfunctions/cumulativesummation.md +96 -0
  75. package/user-documentation/solverfunctions/dateadddays.md +79 -0
  76. package/user-documentation/solverfunctions/dateaddhours.md +74 -0
  77. package/user-documentation/solverfunctions/dateaddmilliseconds.md +65 -0
  78. package/user-documentation/solverfunctions/dateaddminutes.md +72 -0
  79. package/user-documentation/solverfunctions/dateaddmonths.md +74 -0
  80. package/user-documentation/solverfunctions/dateaddseconds.md +66 -0
  81. package/user-documentation/solverfunctions/dateaddweeks.md +73 -0
  82. package/user-documentation/solverfunctions/dateaddyears.md +74 -0
  83. package/user-documentation/solverfunctions/datedaydifference.md +84 -0
  84. package/user-documentation/solverfunctions/datefromparts.md +81 -0
  85. package/user-documentation/solverfunctions/datehourdifference.md +64 -0
  86. package/user-documentation/solverfunctions/datemathadd.md +72 -0
  87. package/user-documentation/solverfunctions/datemilliseconddifference.md +64 -0
  88. package/user-documentation/solverfunctions/dateminutedifference.md +64 -0
  89. package/user-documentation/solverfunctions/datemonthdifference.md +66 -0
  90. package/user-documentation/solverfunctions/dateseconddifference.md +64 -0
  91. package/user-documentation/solverfunctions/dateweekdifference.md +65 -0
  92. package/user-documentation/solverfunctions/dateyeardifference.md +64 -0
  93. package/user-documentation/solverfunctions/differencearrays.md +59 -0
  94. package/user-documentation/solverfunctions/disablesolverordinal.md +58 -0
  95. package/user-documentation/solverfunctions/distributionhistogram.md +96 -0
  96. package/user-documentation/solverfunctions/distributionhistogrambyobject.md +64 -0
  97. package/user-documentation/solverfunctions/enablesolverordinal.md +57 -0
  98. package/user-documentation/solverfunctions/entryinset.md +72 -0
  99. package/user-documentation/solverfunctions/euler.md +77 -0
  100. package/user-documentation/solverfunctions/exp.md +74 -0
  101. package/user-documentation/solverfunctions/findfirstvaluebyexactmatch.md +67 -0
  102. package/user-documentation/solverfunctions/findfirstvaluebystringincludes.md +67 -0
  103. package/user-documentation/solverfunctions/flatten.md +76 -0
  104. package/user-documentation/solverfunctions/floor.md +70 -0
  105. package/user-documentation/solverfunctions/gaussianelimination.md +75 -0
  106. package/user-documentation/solverfunctions/generatearrayofobjectsfromsets.md +70 -0
  107. package/user-documentation/solverfunctions/generatehtmlhexcolor.md +67 -0
  108. package/user-documentation/solverfunctions/getvalue.md +90 -0
  109. package/user-documentation/solverfunctions/getvaluearray.md +64 -0
  110. package/user-documentation/solverfunctions/getvalueobject.md +67 -0
  111. package/user-documentation/solverfunctions/hidesections.md +58 -0
  112. package/user-documentation/solverfunctions/if.md +109 -0
  113. package/user-documentation/solverfunctions/iterativeseries.md +107 -0
  114. package/user-documentation/solverfunctions/join.md +75 -0
  115. package/user-documentation/solverfunctions/joinraw.md +64 -0
  116. package/user-documentation/solverfunctions/largestinset.md +63 -0
  117. package/user-documentation/solverfunctions/leastsquares.md +66 -0
  118. package/user-documentation/solverfunctions/linest.md +58 -0
  119. package/user-documentation/solverfunctions/log.md +74 -0
  120. package/user-documentation/solverfunctions/logvalues.md +65 -0
  121. package/user-documentation/solverfunctions/match.md +71 -0
  122. package/user-documentation/solverfunctions/matrixinverse.md +67 -0
  123. package/user-documentation/solverfunctions/matrixmultiply.md +71 -0
  124. package/user-documentation/solverfunctions/matrixtranspose.md +72 -0
  125. package/user-documentation/solverfunctions/matrixvectormultiply.md +69 -0
  126. package/user-documentation/solverfunctions/max.md +73 -0
  127. package/user-documentation/solverfunctions/mean.md +63 -0
  128. package/user-documentation/solverfunctions/median.md +79 -0
  129. package/user-documentation/solverfunctions/min.md +73 -0
  130. package/user-documentation/solverfunctions/mode.md +66 -0
  131. package/user-documentation/solverfunctions/objectkeystoarray.md +66 -0
  132. package/user-documentation/solverfunctions/objectvaluessortbyexternalobjectarray.md +65 -0
  133. package/user-documentation/solverfunctions/objectvaluestoarray.md +67 -0
  134. package/user-documentation/solverfunctions/percent.md +75 -0
  135. package/user-documentation/solverfunctions/pi.md +77 -0
  136. package/user-documentation/solverfunctions/polynomialregression.md +69 -0
  137. package/user-documentation/solverfunctions/predict.md +71 -0
  138. package/user-documentation/solverfunctions/rad.md +85 -0
  139. package/user-documentation/solverfunctions/randomfloat.md +63 -0
  140. package/user-documentation/solverfunctions/randomfloatbetween.md +72 -0
  141. package/user-documentation/solverfunctions/randomfloatupto.md +65 -0
  142. package/user-documentation/solverfunctions/randominteger.md +56 -0
  143. package/user-documentation/solverfunctions/randomintegerbetween.md +72 -0
  144. package/user-documentation/solverfunctions/randomintegerupto.md +64 -0
  145. package/user-documentation/solverfunctions/refreshtabularsection.md +57 -0
  146. package/user-documentation/solverfunctions/resolvehtmlentities.md +64 -0
  147. package/user-documentation/solverfunctions/round.md +111 -0
  148. package/user-documentation/solverfunctions/runsolvers.md +49 -0
  149. package/user-documentation/solverfunctions/setconcatenate.md +64 -0
  150. package/user-documentation/solverfunctions/setgroupvisibility.md +60 -0
  151. package/user-documentation/solverfunctions/setsectionvisibility.md +59 -0
  152. package/user-documentation/solverfunctions/setsolverordinalenabled.md +59 -0
  153. package/user-documentation/solverfunctions/settabularrowlength.md +57 -0
  154. package/user-documentation/solverfunctions/setvalue.md +65 -0
  155. package/user-documentation/solverfunctions/showsections.md +58 -0
  156. package/user-documentation/solverfunctions/sin.md +83 -0
  157. package/user-documentation/solverfunctions/slice.md +80 -0
  158. package/user-documentation/solverfunctions/smallestinset.md +63 -0
  159. package/user-documentation/solverfunctions/sortarray.md +58 -0
  160. package/user-documentation/solverfunctions/sorthistogram.md +70 -0
  161. package/user-documentation/solverfunctions/sorthistogrambykeys.md +69 -0
  162. package/user-documentation/solverfunctions/sortset.md +75 -0
  163. package/user-documentation/solverfunctions/sqrt.md +85 -0
  164. package/user-documentation/solverfunctions/stdev.md +81 -0
  165. package/user-documentation/solverfunctions/stdeva.md +58 -0
  166. package/user-documentation/solverfunctions/stdevp.md +83 -0
  167. package/user-documentation/solverfunctions/stringcountsegments.md +66 -0
  168. package/user-documentation/solverfunctions/stringgetsegments.md +74 -0
  169. package/user-documentation/solverfunctions/subtractingsummation.md +66 -0
  170. package/user-documentation/solverfunctions/sum.md +78 -0
  171. package/user-documentation/solverfunctions/tan.md +78 -0
  172. package/user-documentation/solverfunctions/tofixed.md +75 -0
  173. package/user-documentation/solverfunctions/unionarrays.md +59 -0
  174. package/user-documentation/solverfunctions/uniquearray.md +58 -0
  175. package/user-documentation/solverfunctions/var.md +67 -0
  176. package/user-documentation/solverfunctions/vara.md +58 -0
  177. package/user-documentation/solverfunctions/varp.md +66 -0
  178. package/user-documentation/solverfunctions/when.md +98 -0
@@ -0,0 +1,695 @@
1
+ {
2
+ "SLV-FUNC-abs": {
3
+ "TopicCode": "SLV-FUNC-abs",
4
+ "TopicHelpFilePath": "solverfunctions/abs.md",
5
+ "TopicTitle": "abs function"
6
+ },
7
+ "SLV-FUNC-aggregationhistogram": {
8
+ "TopicCode": "SLV-FUNC-aggregationhistogram",
9
+ "TopicHelpFilePath": "solverfunctions/aggregationhistogram.md",
10
+ "TopicTitle": "aggregationhistogram function"
11
+ },
12
+ "SLV-FUNC-aggregationhistogrambyobject": {
13
+ "TopicCode": "SLV-FUNC-aggregationhistogrambyobject",
14
+ "TopicHelpFilePath": "solverfunctions/aggregationhistogrambyobject.md",
15
+ "TopicTitle": "aggregationhistogrambyobject function"
16
+ },
17
+ "SLV-FUNC-arrayconcat": {
18
+ "TopicCode": "SLV-FUNC-arrayconcat",
19
+ "TopicHelpFilePath": "solverfunctions/arrayconcat.md",
20
+ "TopicTitle": "arrayconcat function"
21
+ },
22
+ "SLV-FUNC-avg": {
23
+ "TopicCode": "SLV-FUNC-avg",
24
+ "TopicHelpFilePath": "solverfunctions/avg.md",
25
+ "TopicTitle": "avg / mean function"
26
+ },
27
+ "SLV-FUNC-bucketset": {
28
+ "TopicCode": "SLV-FUNC-bucketset",
29
+ "TopicHelpFilePath": "solverfunctions/bucketset.md",
30
+ "TopicTitle": "bucketset function"
31
+ },
32
+ "SLV-FUNC-ceil": {
33
+ "TopicCode": "SLV-FUNC-ceil",
34
+ "TopicHelpFilePath": "solverfunctions/ceil.md",
35
+ "TopicTitle": "ceil function"
36
+ },
37
+ "SLV-FUNC-cleanvaluearray": {
38
+ "TopicCode": "SLV-FUNC-cleanvaluearray",
39
+ "TopicHelpFilePath": "solverfunctions/cleanvaluearray.md",
40
+ "TopicTitle": "cleanvaluearray function"
41
+ },
42
+ "SLV-FUNC-cleanvalueobject": {
43
+ "TopicCode": "SLV-FUNC-cleanvalueobject",
44
+ "TopicHelpFilePath": "solverfunctions/cleanvalueobject.md",
45
+ "TopicTitle": "cleanvalueobject function"
46
+ },
47
+ "SLV-FUNC-colorgroupbackground": {
48
+ "TopicCode": "SLV-FUNC-colorgroupbackground",
49
+ "TopicHelpFilePath": "solverfunctions/colorgroupbackground.md",
50
+ "TopicTitle": "colorgroupbackground function"
51
+ },
52
+ "SLV-FUNC-colorinputbackground": {
53
+ "TopicCode": "SLV-FUNC-colorinputbackground",
54
+ "TopicHelpFilePath": "solverfunctions/colorinputbackground.md",
55
+ "TopicTitle": "colorinputbackground function"
56
+ },
57
+ "SLV-FUNC-colorinputbackgroundtabular": {
58
+ "TopicCode": "SLV-FUNC-colorinputbackgroundtabular",
59
+ "TopicHelpFilePath": "solverfunctions/colorinputbackgroundtabular.md",
60
+ "TopicTitle": "colorinputbackgroundtabular function"
61
+ },
62
+ "SLV-FUNC-colorsectionbackground": {
63
+ "TopicCode": "SLV-FUNC-colorsectionbackground",
64
+ "TopicHelpFilePath": "solverfunctions/colorsectionbackground.md",
65
+ "TopicTitle": "colorsectionbackground function"
66
+ },
67
+ "SLV-FUNC-compare": {
68
+ "TopicCode": "SLV-FUNC-compare",
69
+ "TopicHelpFilePath": "solverfunctions/compare.md",
70
+ "TopicTitle": "compare function"
71
+ },
72
+ "SLV-FUNC-concat": {
73
+ "TopicCode": "SLV-FUNC-concat",
74
+ "TopicHelpFilePath": "solverfunctions/concat.md",
75
+ "TopicTitle": "concat function"
76
+ },
77
+ "SLV-FUNC-concatraw": {
78
+ "TopicCode": "SLV-FUNC-concatraw",
79
+ "TopicHelpFilePath": "solverfunctions/concatraw.md",
80
+ "TopicTitle": "concatraw function"
81
+ },
82
+ "SLV-FUNC-cos": {
83
+ "TopicCode": "SLV-FUNC-cos",
84
+ "TopicHelpFilePath": "solverfunctions/cos.md",
85
+ "TopicTitle": "cos function"
86
+ },
87
+ "SLV-FUNC-count": {
88
+ "TopicCode": "SLV-FUNC-count",
89
+ "TopicHelpFilePath": "solverfunctions/count.md",
90
+ "TopicTitle": "count function"
91
+ },
92
+ "SLV-FUNC-countset": {
93
+ "TopicCode": "SLV-FUNC-countset",
94
+ "TopicHelpFilePath": "solverfunctions/countset.md",
95
+ "TopicTitle": "countset function"
96
+ },
97
+ "SLV-FUNC-countsetelements": {
98
+ "TopicCode": "SLV-FUNC-countsetelements",
99
+ "TopicHelpFilePath": "solverfunctions/countsetelements.md",
100
+ "TopicTitle": "countsetelements function"
101
+ },
102
+ "SLV-FUNC-createarrayfromabsolutevalues": {
103
+ "TopicCode": "SLV-FUNC-createarrayfromabsolutevalues",
104
+ "TopicHelpFilePath": "solverfunctions/createarrayfromabsolutevalues.md",
105
+ "TopicTitle": "createarrayfromabsolutevalues function"
106
+ },
107
+ "SLV-FUNC-createvalueobjectbyhashes": {
108
+ "TopicCode": "SLV-FUNC-createvalueobjectbyhashes",
109
+ "TopicHelpFilePath": "solverfunctions/createvalueobjectbyhashes.md",
110
+ "TopicTitle": "createvalueobjectbyhashes function"
111
+ },
112
+ "SLV-FUNC-cumulativesummation": {
113
+ "TopicCode": "SLV-FUNC-cumulativesummation",
114
+ "TopicHelpFilePath": "solverfunctions/cumulativesummation.md",
115
+ "TopicTitle": "cumulativesummation function"
116
+ },
117
+ "SLV-FUNC-dateadddays": {
118
+ "TopicCode": "SLV-FUNC-dateadddays",
119
+ "TopicHelpFilePath": "solverfunctions/dateadddays.md",
120
+ "TopicTitle": "dateadddays function"
121
+ },
122
+ "SLV-FUNC-dateaddhours": {
123
+ "TopicCode": "SLV-FUNC-dateaddhours",
124
+ "TopicHelpFilePath": "solverfunctions/dateaddhours.md",
125
+ "TopicTitle": "dateaddhours function"
126
+ },
127
+ "SLV-FUNC-dateaddmilliseconds": {
128
+ "TopicCode": "SLV-FUNC-dateaddmilliseconds",
129
+ "TopicHelpFilePath": "solverfunctions/dateaddmilliseconds.md",
130
+ "TopicTitle": "dateaddmilliseconds function"
131
+ },
132
+ "SLV-FUNC-dateaddminutes": {
133
+ "TopicCode": "SLV-FUNC-dateaddminutes",
134
+ "TopicHelpFilePath": "solverfunctions/dateaddminutes.md",
135
+ "TopicTitle": "dateaddminutes function"
136
+ },
137
+ "SLV-FUNC-dateaddmonths": {
138
+ "TopicCode": "SLV-FUNC-dateaddmonths",
139
+ "TopicHelpFilePath": "solverfunctions/dateaddmonths.md",
140
+ "TopicTitle": "dateaddmonths function"
141
+ },
142
+ "SLV-FUNC-dateaddseconds": {
143
+ "TopicCode": "SLV-FUNC-dateaddseconds",
144
+ "TopicHelpFilePath": "solverfunctions/dateaddseconds.md",
145
+ "TopicTitle": "dateaddseconds function"
146
+ },
147
+ "SLV-FUNC-dateaddweeks": {
148
+ "TopicCode": "SLV-FUNC-dateaddweeks",
149
+ "TopicHelpFilePath": "solverfunctions/dateaddweeks.md",
150
+ "TopicTitle": "dateaddweeks function"
151
+ },
152
+ "SLV-FUNC-dateaddyears": {
153
+ "TopicCode": "SLV-FUNC-dateaddyears",
154
+ "TopicHelpFilePath": "solverfunctions/dateaddyears.md",
155
+ "TopicTitle": "dateaddyears function"
156
+ },
157
+ "SLV-FUNC-datedaydifference": {
158
+ "TopicCode": "SLV-FUNC-datedaydifference",
159
+ "TopicHelpFilePath": "solverfunctions/datedaydifference.md",
160
+ "TopicTitle": "datedaydifference function"
161
+ },
162
+ "SLV-FUNC-datefromparts": {
163
+ "TopicCode": "SLV-FUNC-datefromparts",
164
+ "TopicHelpFilePath": "solverfunctions/datefromparts.md",
165
+ "TopicTitle": "datefromparts function"
166
+ },
167
+ "SLV-FUNC-datehourdifference": {
168
+ "TopicCode": "SLV-FUNC-datehourdifference",
169
+ "TopicHelpFilePath": "solverfunctions/datehourdifference.md",
170
+ "TopicTitle": "datehourdifference function"
171
+ },
172
+ "SLV-FUNC-datemathadd": {
173
+ "TopicCode": "SLV-FUNC-datemathadd",
174
+ "TopicHelpFilePath": "solverfunctions/datemathadd.md",
175
+ "TopicTitle": "datemathadd function"
176
+ },
177
+ "SLV-FUNC-datemilliseconddifference": {
178
+ "TopicCode": "SLV-FUNC-datemilliseconddifference",
179
+ "TopicHelpFilePath": "solverfunctions/datemilliseconddifference.md",
180
+ "TopicTitle": "datemilliseconddifference function"
181
+ },
182
+ "SLV-FUNC-dateminutedifference": {
183
+ "TopicCode": "SLV-FUNC-dateminutedifference",
184
+ "TopicHelpFilePath": "solverfunctions/dateminutedifference.md",
185
+ "TopicTitle": "dateminutedifference function"
186
+ },
187
+ "SLV-FUNC-datemonthdifference": {
188
+ "TopicCode": "SLV-FUNC-datemonthdifference",
189
+ "TopicHelpFilePath": "solverfunctions/datemonthdifference.md",
190
+ "TopicTitle": "datemonthdifference function"
191
+ },
192
+ "SLV-FUNC-dateseconddifference": {
193
+ "TopicCode": "SLV-FUNC-dateseconddifference",
194
+ "TopicHelpFilePath": "solverfunctions/dateseconddifference.md",
195
+ "TopicTitle": "dateseconddifference function"
196
+ },
197
+ "SLV-FUNC-dateweekdifference": {
198
+ "TopicCode": "SLV-FUNC-dateweekdifference",
199
+ "TopicHelpFilePath": "solverfunctions/dateweekdifference.md",
200
+ "TopicTitle": "dateweekdifference function"
201
+ },
202
+ "SLV-FUNC-dateyeardifference": {
203
+ "TopicCode": "SLV-FUNC-dateyeardifference",
204
+ "TopicHelpFilePath": "solverfunctions/dateyeardifference.md",
205
+ "TopicTitle": "dateyeardifference function"
206
+ },
207
+ "SLV-FUNC-differencearrays": {
208
+ "TopicCode": "SLV-FUNC-differencearrays",
209
+ "TopicHelpFilePath": "solverfunctions/differencearrays.md",
210
+ "TopicTitle": "differencearrays function"
211
+ },
212
+ "SLV-FUNC-disablesolverordinal": {
213
+ "TopicCode": "SLV-FUNC-disablesolverordinal",
214
+ "TopicHelpFilePath": "solverfunctions/disablesolverordinal.md",
215
+ "TopicTitle": "disablesolverordinal function"
216
+ },
217
+ "SLV-FUNC-distributionhistogram": {
218
+ "TopicCode": "SLV-FUNC-distributionhistogram",
219
+ "TopicHelpFilePath": "solverfunctions/distributionhistogram.md",
220
+ "TopicTitle": "distributionhistogram function"
221
+ },
222
+ "SLV-FUNC-distributionhistogrambyobject": {
223
+ "TopicCode": "SLV-FUNC-distributionhistogrambyobject",
224
+ "TopicHelpFilePath": "solverfunctions/distributionhistogrambyobject.md",
225
+ "TopicTitle": "distributionhistogrambyobject function"
226
+ },
227
+ "SLV-FUNC-enablesolverordinal": {
228
+ "TopicCode": "SLV-FUNC-enablesolverordinal",
229
+ "TopicHelpFilePath": "solverfunctions/enablesolverordinal.md",
230
+ "TopicTitle": "enablesolverordinal function"
231
+ },
232
+ "SLV-FUNC-entryinset": {
233
+ "TopicCode": "SLV-FUNC-entryinset",
234
+ "TopicHelpFilePath": "solverfunctions/entryinset.md",
235
+ "TopicTitle": "entryinset function"
236
+ },
237
+ "SLV-FUNC-euler": {
238
+ "TopicCode": "SLV-FUNC-euler",
239
+ "TopicHelpFilePath": "solverfunctions/euler.md",
240
+ "TopicTitle": "euler function"
241
+ },
242
+ "SLV-FUNC-exp": {
243
+ "TopicCode": "SLV-FUNC-exp",
244
+ "TopicHelpFilePath": "solverfunctions/exp.md",
245
+ "TopicTitle": "exp function"
246
+ },
247
+ "SLV-FUNC-findfirstvaluebyexactmatch": {
248
+ "TopicCode": "SLV-FUNC-findfirstvaluebyexactmatch",
249
+ "TopicHelpFilePath": "solverfunctions/findfirstvaluebyexactmatch.md",
250
+ "TopicTitle": "findfirstvaluebyexactmatch function"
251
+ },
252
+ "SLV-FUNC-findfirstvaluebystringincludes": {
253
+ "TopicCode": "SLV-FUNC-findfirstvaluebystringincludes",
254
+ "TopicHelpFilePath": "solverfunctions/findfirstvaluebystringincludes.md",
255
+ "TopicTitle": "findfirstvaluebystringincludes function"
256
+ },
257
+ "SLV-FUNC-flatten": {
258
+ "TopicCode": "SLV-FUNC-flatten",
259
+ "TopicHelpFilePath": "solverfunctions/flatten.md",
260
+ "TopicTitle": "flatten function"
261
+ },
262
+ "SLV-FUNC-floor": {
263
+ "TopicCode": "SLV-FUNC-floor",
264
+ "TopicHelpFilePath": "solverfunctions/floor.md",
265
+ "TopicTitle": "floor function"
266
+ },
267
+ "SLV-FUNC-gaussianelimination": {
268
+ "TopicCode": "SLV-FUNC-gaussianelimination",
269
+ "TopicHelpFilePath": "solverfunctions/gaussianelimination.md",
270
+ "TopicTitle": "gaussianelimination function"
271
+ },
272
+ "SLV-FUNC-generatearrayofobjectsfromsets": {
273
+ "TopicCode": "SLV-FUNC-generatearrayofobjectsfromsets",
274
+ "TopicHelpFilePath": "solverfunctions/generatearrayofobjectsfromsets.md",
275
+ "TopicTitle": "generatearrayofobjectsfromsets function"
276
+ },
277
+ "SLV-FUNC-generatehtmlhexcolor": {
278
+ "TopicCode": "SLV-FUNC-generatehtmlhexcolor",
279
+ "TopicHelpFilePath": "solverfunctions/generatehtmlhexcolor.md",
280
+ "TopicTitle": "generatehtmlhexcolor function"
281
+ },
282
+ "SLV-FUNC-getvalue": {
283
+ "TopicCode": "SLV-FUNC-getvalue",
284
+ "TopicHelpFilePath": "solverfunctions/getvalue.md",
285
+ "TopicTitle": "getvalue function"
286
+ },
287
+ "SLV-FUNC-getvaluearray": {
288
+ "TopicCode": "SLV-FUNC-getvaluearray",
289
+ "TopicHelpFilePath": "solverfunctions/getvaluearray.md",
290
+ "TopicTitle": "getvaluearray function"
291
+ },
292
+ "SLV-FUNC-getvalueobject": {
293
+ "TopicCode": "SLV-FUNC-getvalueobject",
294
+ "TopicHelpFilePath": "solverfunctions/getvalueobject.md",
295
+ "TopicTitle": "getvalueobject function"
296
+ },
297
+ "SLV-FUNC-hidesections": {
298
+ "TopicCode": "SLV-FUNC-hidesections",
299
+ "TopicHelpFilePath": "solverfunctions/hidesections.md",
300
+ "TopicTitle": "hidesections function"
301
+ },
302
+ "SLV-FUNC-if": {
303
+ "TopicCode": "SLV-FUNC-if",
304
+ "TopicHelpFilePath": "solverfunctions/if.md",
305
+ "TopicTitle": "if function"
306
+ },
307
+ "SLV-FUNC-iterativeseries": {
308
+ "TopicCode": "SLV-FUNC-iterativeseries",
309
+ "TopicHelpFilePath": "solverfunctions/iterativeseries.md",
310
+ "TopicTitle": "iterativeseries function"
311
+ },
312
+ "SLV-FUNC-join": {
313
+ "TopicCode": "SLV-FUNC-join",
314
+ "TopicHelpFilePath": "solverfunctions/join.md",
315
+ "TopicTitle": "join function"
316
+ },
317
+ "SLV-FUNC-joinraw": {
318
+ "TopicCode": "SLV-FUNC-joinraw",
319
+ "TopicHelpFilePath": "solverfunctions/joinraw.md",
320
+ "TopicTitle": "joinraw function"
321
+ },
322
+ "SLV-FUNC-largestinset": {
323
+ "TopicCode": "SLV-FUNC-largestinset",
324
+ "TopicHelpFilePath": "solverfunctions/largestinset.md",
325
+ "TopicTitle": "largestinset function"
326
+ },
327
+ "SLV-FUNC-leastsquares": {
328
+ "TopicCode": "SLV-FUNC-leastsquares",
329
+ "TopicHelpFilePath": "solverfunctions/leastsquares.md",
330
+ "TopicTitle": "leastsquares function"
331
+ },
332
+ "SLV-FUNC-linest": {
333
+ "TopicCode": "SLV-FUNC-linest",
334
+ "TopicHelpFilePath": "solverfunctions/linest.md",
335
+ "TopicTitle": "linest function"
336
+ },
337
+ "SLV-FUNC-log": {
338
+ "TopicCode": "SLV-FUNC-log",
339
+ "TopicHelpFilePath": "solverfunctions/log.md",
340
+ "TopicTitle": "log function"
341
+ },
342
+ "SLV-FUNC-logvalues": {
343
+ "TopicCode": "SLV-FUNC-logvalues",
344
+ "TopicHelpFilePath": "solverfunctions/logvalues.md",
345
+ "TopicTitle": "logvalues function"
346
+ },
347
+ "SLV-FUNC-match": {
348
+ "TopicCode": "SLV-FUNC-match",
349
+ "TopicHelpFilePath": "solverfunctions/match.md",
350
+ "TopicTitle": "match function"
351
+ },
352
+ "SLV-FUNC-matrixinverse": {
353
+ "TopicCode": "SLV-FUNC-matrixinverse",
354
+ "TopicHelpFilePath": "solverfunctions/matrixinverse.md",
355
+ "TopicTitle": "matrixinverse function"
356
+ },
357
+ "SLV-FUNC-matrixmultiply": {
358
+ "TopicCode": "SLV-FUNC-matrixmultiply",
359
+ "TopicHelpFilePath": "solverfunctions/matrixmultiply.md",
360
+ "TopicTitle": "matrixmultiply function"
361
+ },
362
+ "SLV-FUNC-matrixtranspose": {
363
+ "TopicCode": "SLV-FUNC-matrixtranspose",
364
+ "TopicHelpFilePath": "solverfunctions/matrixtranspose.md",
365
+ "TopicTitle": "matrixtranspose function"
366
+ },
367
+ "SLV-FUNC-matrixvectormultiply": {
368
+ "TopicCode": "SLV-FUNC-matrixvectormultiply",
369
+ "TopicHelpFilePath": "solverfunctions/matrixvectormultiply.md",
370
+ "TopicTitle": "matrixvectormultiply function"
371
+ },
372
+ "SLV-FUNC-max": {
373
+ "TopicCode": "SLV-FUNC-max",
374
+ "TopicHelpFilePath": "solverfunctions/max.md",
375
+ "TopicTitle": "max function"
376
+ },
377
+ "SLV-FUNC-mean": {
378
+ "TopicCode": "SLV-FUNC-mean",
379
+ "TopicHelpFilePath": "solverfunctions/mean.md",
380
+ "TopicTitle": "mean function"
381
+ },
382
+ "SLV-FUNC-median": {
383
+ "TopicCode": "SLV-FUNC-median",
384
+ "TopicHelpFilePath": "solverfunctions/median.md",
385
+ "TopicTitle": "median function"
386
+ },
387
+ "SLV-FUNC-min": {
388
+ "TopicCode": "SLV-FUNC-min",
389
+ "TopicHelpFilePath": "solverfunctions/min.md",
390
+ "TopicTitle": "min function"
391
+ },
392
+ "SLV-FUNC-mode": {
393
+ "TopicCode": "SLV-FUNC-mode",
394
+ "TopicHelpFilePath": "solverfunctions/mode.md",
395
+ "TopicTitle": "mode function"
396
+ },
397
+ "SLV-FUNC-objectkeystoarray": {
398
+ "TopicCode": "SLV-FUNC-objectkeystoarray",
399
+ "TopicHelpFilePath": "solverfunctions/objectkeystoarray.md",
400
+ "TopicTitle": "objectkeystoarray function"
401
+ },
402
+ "SLV-FUNC-objectvaluessortbyexternalobjectarray": {
403
+ "TopicCode": "SLV-FUNC-objectvaluessortbyexternalobjectarray",
404
+ "TopicHelpFilePath": "solverfunctions/objectvaluessortbyexternalobjectarray.md",
405
+ "TopicTitle": "objectvaluessortbyexternalobjectarray function"
406
+ },
407
+ "SLV-FUNC-objectvaluestoarray": {
408
+ "TopicCode": "SLV-FUNC-objectvaluestoarray",
409
+ "TopicHelpFilePath": "solverfunctions/objectvaluestoarray.md",
410
+ "TopicTitle": "objectvaluestoarray function"
411
+ },
412
+ "SLV-FUNC-percent": {
413
+ "TopicCode": "SLV-FUNC-percent",
414
+ "TopicHelpFilePath": "solverfunctions/percent.md",
415
+ "TopicTitle": "percent function"
416
+ },
417
+ "SLV-FUNC-pi": {
418
+ "TopicCode": "SLV-FUNC-pi",
419
+ "TopicHelpFilePath": "solverfunctions/pi.md",
420
+ "TopicTitle": "pi function"
421
+ },
422
+ "SLV-FUNC-polynomialregression": {
423
+ "TopicCode": "SLV-FUNC-polynomialregression",
424
+ "TopicHelpFilePath": "solverfunctions/polynomialregression.md",
425
+ "TopicTitle": "polynomialregression function"
426
+ },
427
+ "SLV-FUNC-predict": {
428
+ "TopicCode": "SLV-FUNC-predict",
429
+ "TopicHelpFilePath": "solverfunctions/predict.md",
430
+ "TopicTitle": "predict function"
431
+ },
432
+ "SLV-FUNC-rad": {
433
+ "TopicCode": "SLV-FUNC-rad",
434
+ "TopicHelpFilePath": "solverfunctions/rad.md",
435
+ "TopicTitle": "rad function"
436
+ },
437
+ "SLV-FUNC-randomfloat": {
438
+ "TopicCode": "SLV-FUNC-randomfloat",
439
+ "TopicHelpFilePath": "solverfunctions/randomfloat.md",
440
+ "TopicTitle": "randomfloat function"
441
+ },
442
+ "SLV-FUNC-randomfloatbetween": {
443
+ "TopicCode": "SLV-FUNC-randomfloatbetween",
444
+ "TopicHelpFilePath": "solverfunctions/randomfloatbetween.md",
445
+ "TopicTitle": "randomfloatbetween function"
446
+ },
447
+ "SLV-FUNC-randomfloatupto": {
448
+ "TopicCode": "SLV-FUNC-randomfloatupto",
449
+ "TopicHelpFilePath": "solverfunctions/randomfloatupto.md",
450
+ "TopicTitle": "randomfloatupto function"
451
+ },
452
+ "SLV-FUNC-randominteger": {
453
+ "TopicCode": "SLV-FUNC-randominteger",
454
+ "TopicHelpFilePath": "solverfunctions/randominteger.md",
455
+ "TopicTitle": "randominteger function"
456
+ },
457
+ "SLV-FUNC-randomintegerbetween": {
458
+ "TopicCode": "SLV-FUNC-randomintegerbetween",
459
+ "TopicHelpFilePath": "solverfunctions/randomintegerbetween.md",
460
+ "TopicTitle": "randomintegerbetween function"
461
+ },
462
+ "SLV-FUNC-randomintegerupto": {
463
+ "TopicCode": "SLV-FUNC-randomintegerupto",
464
+ "TopicHelpFilePath": "solverfunctions/randomintegerupto.md",
465
+ "TopicTitle": "randomintegerupto function"
466
+ },
467
+ "SLV-FUNC-refreshtabularsection": {
468
+ "TopicCode": "SLV-FUNC-refreshtabularsection",
469
+ "TopicHelpFilePath": "solverfunctions/refreshtabularsection.md",
470
+ "TopicTitle": "refreshtabularsection function"
471
+ },
472
+ "SLV-FUNC-resolvehtmlentities": {
473
+ "TopicCode": "SLV-FUNC-resolvehtmlentities",
474
+ "TopicHelpFilePath": "solverfunctions/resolvehtmlentities.md",
475
+ "TopicTitle": "resolvehtmlentities function"
476
+ },
477
+ "SLV-FUNC-round": {
478
+ "TopicCode": "SLV-FUNC-round",
479
+ "TopicHelpFilePath": "solverfunctions/round.md",
480
+ "TopicTitle": "round function"
481
+ },
482
+ "SLV-FUNC-runsolvers": {
483
+ "TopicCode": "SLV-FUNC-runsolvers",
484
+ "TopicHelpFilePath": "solverfunctions/runsolvers.md",
485
+ "TopicTitle": "runsolvers function"
486
+ },
487
+ "SLV-FUNC-setconcatenate": {
488
+ "TopicCode": "SLV-FUNC-setconcatenate",
489
+ "TopicHelpFilePath": "solverfunctions/setconcatenate.md",
490
+ "TopicTitle": "setconcatenate function"
491
+ },
492
+ "SLV-FUNC-setgroupvisibility": {
493
+ "TopicCode": "SLV-FUNC-setgroupvisibility",
494
+ "TopicHelpFilePath": "solverfunctions/setgroupvisibility.md",
495
+ "TopicTitle": "setgroupvisibility function"
496
+ },
497
+ "SLV-FUNC-setsectionvisibility": {
498
+ "TopicCode": "SLV-FUNC-setsectionvisibility",
499
+ "TopicHelpFilePath": "solverfunctions/setsectionvisibility.md",
500
+ "TopicTitle": "setsectionvisibility function"
501
+ },
502
+ "SLV-FUNC-setsolverordinalenabled": {
503
+ "TopicCode": "SLV-FUNC-setsolverordinalenabled",
504
+ "TopicHelpFilePath": "solverfunctions/setsolverordinalenabled.md",
505
+ "TopicTitle": "setsolverordinalenabled function"
506
+ },
507
+ "SLV-FUNC-settabularrowlength": {
508
+ "TopicCode": "SLV-FUNC-settabularrowlength",
509
+ "TopicHelpFilePath": "solverfunctions/settabularrowlength.md",
510
+ "TopicTitle": "settabularrowlength function"
511
+ },
512
+ "SLV-FUNC-setvalue": {
513
+ "TopicCode": "SLV-FUNC-setvalue",
514
+ "TopicHelpFilePath": "solverfunctions/setvalue.md",
515
+ "TopicTitle": "setvalue function"
516
+ },
517
+ "SLV-FUNC-showsections": {
518
+ "TopicCode": "SLV-FUNC-showsections",
519
+ "TopicHelpFilePath": "solverfunctions/showsections.md",
520
+ "TopicTitle": "showsections function"
521
+ },
522
+ "SLV-FUNC-sin": {
523
+ "TopicCode": "SLV-FUNC-sin",
524
+ "TopicHelpFilePath": "solverfunctions/sin.md",
525
+ "TopicTitle": "sin function"
526
+ },
527
+ "SLV-FUNC-slice": {
528
+ "TopicCode": "SLV-FUNC-slice",
529
+ "TopicHelpFilePath": "solverfunctions/slice.md",
530
+ "TopicTitle": "slice function"
531
+ },
532
+ "SLV-FUNC-smallestinset": {
533
+ "TopicCode": "SLV-FUNC-smallestinset",
534
+ "TopicHelpFilePath": "solverfunctions/smallestinset.md",
535
+ "TopicTitle": "smallestinset function"
536
+ },
537
+ "SLV-FUNC-sortarray": {
538
+ "TopicCode": "SLV-FUNC-sortarray",
539
+ "TopicHelpFilePath": "solverfunctions/sortarray.md",
540
+ "TopicTitle": "sortarray function"
541
+ },
542
+ "SLV-FUNC-sorthistogram": {
543
+ "TopicCode": "SLV-FUNC-sorthistogram",
544
+ "TopicHelpFilePath": "solverfunctions/sorthistogram.md",
545
+ "TopicTitle": "sorthistogram function"
546
+ },
547
+ "SLV-FUNC-sorthistogrambykeys": {
548
+ "TopicCode": "SLV-FUNC-sorthistogrambykeys",
549
+ "TopicHelpFilePath": "solverfunctions/sorthistogrambykeys.md",
550
+ "TopicTitle": "sorthistogrambykeys function"
551
+ },
552
+ "SLV-FUNC-sortset": {
553
+ "TopicCode": "SLV-FUNC-sortset",
554
+ "TopicHelpFilePath": "solverfunctions/sortset.md",
555
+ "TopicTitle": "sortset function"
556
+ },
557
+ "SLV-FUNC-sqrt": {
558
+ "TopicCode": "SLV-FUNC-sqrt",
559
+ "TopicHelpFilePath": "solverfunctions/sqrt.md",
560
+ "TopicTitle": "sqrt function"
561
+ },
562
+ "SLV-FUNC-stdev": {
563
+ "TopicCode": "SLV-FUNC-stdev",
564
+ "TopicHelpFilePath": "solverfunctions/stdev.md",
565
+ "TopicTitle": "stdev / stdeva function"
566
+ },
567
+ "SLV-FUNC-stdeva": {
568
+ "TopicCode": "SLV-FUNC-stdeva",
569
+ "TopicHelpFilePath": "solverfunctions/stdeva.md",
570
+ "TopicTitle": "stdeva function"
571
+ },
572
+ "SLV-FUNC-stdevp": {
573
+ "TopicCode": "SLV-FUNC-stdevp",
574
+ "TopicHelpFilePath": "solverfunctions/stdevp.md",
575
+ "TopicTitle": "stdevp function"
576
+ },
577
+ "SLV-FUNC-stringcountsegments": {
578
+ "TopicCode": "SLV-FUNC-stringcountsegments",
579
+ "TopicHelpFilePath": "solverfunctions/stringcountsegments.md",
580
+ "TopicTitle": "stringcountsegments function"
581
+ },
582
+ "SLV-FUNC-stringgetsegments": {
583
+ "TopicCode": "SLV-FUNC-stringgetsegments",
584
+ "TopicHelpFilePath": "solverfunctions/stringgetsegments.md",
585
+ "TopicTitle": "stringgetsegments function"
586
+ },
587
+ "SLV-FUNC-subtractingsummation": {
588
+ "TopicCode": "SLV-FUNC-subtractingsummation",
589
+ "TopicHelpFilePath": "solverfunctions/subtractingsummation.md",
590
+ "TopicTitle": "subtractingsummation function"
591
+ },
592
+ "SLV-FUNC-sum": {
593
+ "TopicCode": "SLV-FUNC-sum",
594
+ "TopicHelpFilePath": "solverfunctions/sum.md",
595
+ "TopicTitle": "sum function"
596
+ },
597
+ "SLV-FUNC-tan": {
598
+ "TopicCode": "SLV-FUNC-tan",
599
+ "TopicHelpFilePath": "solverfunctions/tan.md",
600
+ "TopicTitle": "tan function"
601
+ },
602
+ "SLV-FUNC-tofixed": {
603
+ "TopicCode": "SLV-FUNC-tofixed",
604
+ "TopicHelpFilePath": "solverfunctions/tofixed.md",
605
+ "TopicTitle": "tofixed function"
606
+ },
607
+ "SLV-FUNC-unionarrays": {
608
+ "TopicCode": "SLV-FUNC-unionarrays",
609
+ "TopicHelpFilePath": "solverfunctions/unionarrays.md",
610
+ "TopicTitle": "unionarrays function"
611
+ },
612
+ "SLV-FUNC-uniquearray": {
613
+ "TopicCode": "SLV-FUNC-uniquearray",
614
+ "TopicHelpFilePath": "solverfunctions/uniquearray.md",
615
+ "TopicTitle": "uniquearray function"
616
+ },
617
+ "SLV-FUNC-var": {
618
+ "TopicCode": "SLV-FUNC-var",
619
+ "TopicHelpFilePath": "solverfunctions/var.md",
620
+ "TopicTitle": "var function"
621
+ },
622
+ "SLV-FUNC-vara": {
623
+ "TopicCode": "SLV-FUNC-vara",
624
+ "TopicHelpFilePath": "solverfunctions/vara.md",
625
+ "TopicTitle": "vara function"
626
+ },
627
+ "SLV-FUNC-varp": {
628
+ "TopicCode": "SLV-FUNC-varp",
629
+ "TopicHelpFilePath": "solverfunctions/varp.md",
630
+ "TopicTitle": "varp function"
631
+ },
632
+ "SLV-FUNC-when": {
633
+ "TopicCode": "SLV-FUNC-when",
634
+ "TopicHelpFilePath": "solverfunctions/when.md",
635
+ "TopicTitle": "when function"
636
+ },
637
+ "SLV-OP-Add": {
638
+ "TopicCode": "SLV-OP-Add",
639
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
640
+ "TopicTitle": "Addition Operator (+)",
641
+ "RelevantMarkdownLine": 39
642
+ },
643
+ "SLV-OP-Subtract": {
644
+ "TopicCode": "SLV-OP-Subtract",
645
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
646
+ "TopicTitle": "Subtraction Operator (-)",
647
+ "RelevantMarkdownLine": 40
648
+ },
649
+ "SLV-OP-Multiply": {
650
+ "TopicCode": "SLV-OP-Multiply",
651
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
652
+ "TopicTitle": "Multiplication Operator (*)",
653
+ "RelevantMarkdownLine": 36
654
+ },
655
+ "SLV-OP-Divide": {
656
+ "TopicCode": "SLV-OP-Divide",
657
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
658
+ "TopicTitle": "Division Operator (/)",
659
+ "RelevantMarkdownLine": 37
660
+ },
661
+ "SLV-OP-Modulus": {
662
+ "TopicCode": "SLV-OP-Modulus",
663
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
664
+ "TopicTitle": "Modulus Operator (%)",
665
+ "RelevantMarkdownLine": 38
666
+ },
667
+ "SLV-OP-Exponent": {
668
+ "TopicCode": "SLV-OP-Exponent",
669
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
670
+ "TopicTitle": "Exponentiation Operator (^)",
671
+ "RelevantMarkdownLine": 35
672
+ },
673
+ "SLV-OP-SetConcat": {
674
+ "TopicCode": "SLV-OP-SetConcat",
675
+ "TopicHelpFilePath": "Solver-Functions.md",
676
+ "TopicTitle": "Set Concatenation Operator (,)"
677
+ },
678
+ "SLV-ASSIGN-Equals": {
679
+ "TopicCode": "SLV-ASSIGN-Equals",
680
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
681
+ "TopicTitle": "Assignment Operator (=)",
682
+ "RelevantMarkdownLine": 17
683
+ },
684
+ "SLV-ASSIGN-NullCoalesce": {
685
+ "TopicCode": "SLV-ASSIGN-NullCoalesce",
686
+ "TopicHelpFilePath": "Solver-Expression-Walkthrough.md",
687
+ "TopicTitle": "Null Coalescence Assignment (?=)",
688
+ "RelevantMarkdownLine": 141
689
+ },
690
+ "SLV-ASSIGN-ExpressionBegin": {
691
+ "TopicCode": "SLV-ASSIGN-ExpressionBegin",
692
+ "TopicHelpFilePath": "Solver-Expressions-Advanced.md",
693
+ "TopicTitle": "Expression Begin Directive (:)"
694
+ }
695
+ }