lambda_mountain 1.16.40

Typed Macro Assembler (backed by Coq proofs-of-correctness)
Documentation
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
<!DOCTYPE html>
<html>
<head ><link  rel="stylesheet"  href="https://assets.ubuntu.com/v1/vanilla-framework-version-4.15.0.min.css" \>
<title >Documentation: LIB/default.html</title>
</head>
<body ><div  class="l-docs" ><div  class="l-docs__header" ><header  id="navigation"  class="p-navigation is-dark" ><div  class="l-docs__subgrid" ><div  class="l-docs__sidebar" ><div  class="p-navigation__banner" ><div  class="p-navigation__tagged-logo" ><a  class="p-navigation__link"  href="/lambda-mountain/" ><div  class="p-navigation__logo-tag" ><img  class="p-navigation__logo-icon"  src="https://github.com/andrew-johnson-4/lambda-mountain/blob/main/DOBYLOGO.png?raw=true" \>
</div>
<span  class="p-navigation__logo-title" >Lambda Mountain</span></a>
</div>
</div>
</div>
<div  class="l-docs__main" ><div  class="p-navigation__row u-fixed-width" ><nav  class="p-navigation__nav" ><ul  class="p-navigation__items" ><li  class="p-navigation__item" ><a  class="p-navigation__link"  href="/lambda-mountain/default.lm.html" >default.lm</a>
</li>
<li  class="p-navigation__item" ><a  class="p-navigation__link"  href="/lambda-mountain/default.html.html" >default.html</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<section  id="search-docs"  class="p-strip is-bordered is-shallow l-docs__subgrid" >
<div  class="l-docs__sidebar u-hide--medium u-hide--small" ><div  class="u-fixed-width" ><h5  class="u-sv-2" >LM Documentation</h5>
</div>
</div>
<div  class="l-docs__main" ><div  class="row" ><form  class="p-search-box u-no-margin-bottom"  method="get"  action="https://www.google.com/search" >
<input  type="text"  class="p-search-box__input"  name="q"  placeholder="Search documentation "  required=""  autocomplete="on" >
<input  type="checkbox"  name="sitesearch"  value="https://andrew-johnson-4.github.io/lambda-mountain/"  checked  hidden >
<button  type="reset"  class="p-search-box__reset"  name="close" >
<i  class="p-icon--close" ></i></button>
<button  type="submit"  class="p-search-box__button"  name="submitSearch" >
<i  class="p-icon--search" ></i></button>
</form>
</div>
</div>
</section>
</div>
<div  class="l-docs__title"  id="main-content" ><div  class="p-section--shallow" ><div  class="row" ><div  class="col-12" ><h1 >LIB/default.html Documentation</h1>
</div>
</div>
</div>
</div>
<main class="l-docs__main" >
<div  class="row" ><div  class="col-12" ><hr >
<h4 ><b>class</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A class attribute can be added to most html elements.</p><pre >
<code >
(div(
   (class( 'p-data_s ))
   (h2( 'Hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>action</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >An action attribute can be added to most html elements.</p><pre >
<code >
(form(
   (action( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>value</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A value attribute can be added to most html elements.</p><pre >
<code >
(input(
   (value( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>checked</b> : () -&gt; HTMLAttribute</h4>
<p >A checked attribute can be added to most html elements.</p><pre >
<code >
(form(
   (checked( () ))
))
</code>
</pre>
<hr >
<h4 ><b>hidden</b> : () -&gt; HTMLAttribute</h4>
<p >A hidden attribute can be added to most html elements.</p><pre >
<code >
(form(
   (hidden( () ))
))
</code>
</pre>
<hr >
<h4 ><b>method</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A method attribute can be added to most html elements.</p><pre >
<code >
(form(
   (method( 'get_s ))
))
</code>
</pre>
<hr >
<h4 ><b>name</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A name attribute can be added to most html elements.</p><pre >
<code >
(div(
   (name( 'data_s ))
   (h2( 'Hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>autocomplete</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >An autocomplete attribute can be added to most html elements.</p><pre >
<code >
(input(
   (type_( 'text_s ))
   (autocomplete( 'default value_s ))
))
</code>
</pre>
<hr >
<h4 ><b>required</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A required attribute can be added to most html elements.</p><pre >
<code >
(input(
   (type_( 'text_s ))
   (required( 'yes_s ))
))
</code>
</pre>
<hr >
<h4 ><b>placeholder</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A placeholder attribute can be added to most html elements.</p><pre >
<code >
(input(
   (type_( 'text_s ))
   (placeholder( 'temporary value_s ))
))
</code>
</pre>
<hr >
<h4 ><b>type_</b> : (cls: String) -&gt; HTMLAttribute</h4>
<p >A type attribute can be added to most html elements.</p><pre >
<code >
(input(
   (type_( 'text_s ))
))
</code>
</pre>
<hr >
<h4 ><b>src</b> : (s: String) -&gt; HTMLAttribute</h4>
<p >A src attribute can be added to most html elements.</p><pre >
<code >
(input(
   (src( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>id</b> : (i: String) -&gt; HTMLAttribute</h4>
<p >An id attribute can be added to most html elements.</p><pre >
<code >
(input(
   (id( 'ident_s ))
))
</code>
</pre>
<hr >
<h4 ><b>rel</b> : (i: String) -&gt; HTMLAttribute</h4>
<p >A rel attribute can be added to most html elements.</p><pre >
<code >
(input(
   (rel( 'ident_s ))
))
</code>
</pre>
<hr >
<h4 ><b>href</b> : (a: String) -&gt; HTMLAttribute</h4>
<p >An href attribute can be added to most html elements.</p><pre >
<code >
(input(
   (rel( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>text</b> : (t: String) -&gt; HTMLElement</h4>
<p >text is a typesafe plaintext element.</p><pre >
<code >
(text( 'hello_s ))
</code>
</pre>
<hr >
<h4 ><b>html</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >html is the document root .</p><pre >
<code >
(html(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>main</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >main is a semantic html element.</p><pre >
<code >
(main(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>head</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >head is a semantic html element.</p><pre >
<code >
(head(
   (title( 'The page title_s ))
))
</code>
</pre>
<hr >
<h4 ><b>title</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >title is a semantic html element.</p><pre >
<code >
(title(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>body</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >body is where visual html elements go.</p><pre >
<code >
(body(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h1</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h1 is a semantic html element.</p><pre >
<code >
(h1(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h2</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h2 is a semantic html element.</p><pre >
<code >
(h2(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h3</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h3 is a semantic html element.</p><pre >
<code >
(h3(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h4</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h4 is a semantic html element.</p><pre >
<code >
(h4(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h5</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h5 is a semantic html element.</p><pre >
<code >
(h5(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h6</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >h6 is a semantic html element.</p><pre >
<code >
(h6(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>div</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >div is a semantic html element.</p><pre >
<code >
(div(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>header</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >header is a semantic html element.</p><pre >
<code >
(header(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>nav</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >nav is a semantic html element.</p><pre >
<code >
(nav(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>ul</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >ul is a semantic html element.</p><pre >
<code >
(ul(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>ol</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >ol is a semantic html element.</p><pre >
<code >
(ol(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>li</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >li is a semantic html element.</p><pre >
<code >
(li(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>a</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >a is a semantic html element.</p><pre >
<code >
(a(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>span</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >span is a semantic html element.</p><pre >
<code >
(span(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>i</b> : (attrs: HTMLAttribute...)(f1: HTMLElement) -&gt; HTMLElement</h4>
<p >i is a semantic html element.</p><pre >
<code >
(i(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>p</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >p is a semantic html element.</p><pre >
<code >
(p(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>img</b> : (attrs: HTMLAttribute...) -&gt; HTMLElement</h4>
<p >img is a semantic html element.</p><pre >
<code >
(img(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>link</b> : (attrs: HTMLAttribute...) -&gt; HTMLElement</h4>
<p >link is a semantic html element.</p><pre >
<code >
(link(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>section</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >section is a semantic html element.</p><pre >
<code >
(section(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>form</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >form is a semantic html element.</p><pre >
<code >
(form(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>input</b> : (attrs: HTMLAttribute...) -&gt; HTMLElement</h4>
<p >input is a semantic html element.</p><pre >
<code >
(input(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>button</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >button is a semantic html element.</p><pre >
<code >
(button(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>pre</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >pre is a semantic html element.</p><pre >
<code >
(pre(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>code</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >code is a semantic html element.</p><pre >
<code >
(code(
   (text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>hr</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -&gt; HTMLElement</h4>
<p >hr is a semantic html element.</p><pre >
<code >
(hr(
   (class( 't_s ))
))
</code>
</pre>
</div>
</div>
</main>
</div>
</body>
</html>