Skip to content

Commit 5912b19

Browse files
committed
regenerate site
1 parent e7f465e commit 5912b19

File tree

5 files changed

+41
-41
lines changed

5 files changed

+41
-41
lines changed

articles/language/laziness/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h2>Language: Laziness</h2>
6565
<p>This guide covers:</p><ul><li>What are lazy sequences</li><li>Pitfalls with lazy sequences</li><li>How to create functions that produce lazy sequences</li><li>How to force evaluation</li></ul><p>This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
6666
Attribution 3.0 Unported License</a> (including images &amp;
6767
stylesheets). The source is available <a href="https://github.com/clojure-doc/clojure-doc.github.io">on
68-
Github</a>.</p><h2 id="what-version-of-clojure-does-this-guide-cover">What Version of Clojure Does This Guide Cover?</h2><p>This guide covers Clojure 1.11.</p><h2 id="overview">Overview</h2><p>Clojure is not a <a href="http://en.wikipedia.org/wiki/Lazy_evaluation">lazy language</a>.</p><p>However, Clojure supports <em>lazily evaluated sequences</em>. This means that sequence elements are not
68+
Github</a>.</p><h2 id="what-version-of-clojure-does-this-guide-cover">What Version of Clojure Does This Guide Cover?</h2><p>This guide covers Clojure 1.12.</p><h2 id="overview">Overview</h2><p>Clojure is not a <a href="http://en.wikipedia.org/wiki/Lazy_evaluation">lazy language</a>.</p><p>However, Clojure supports <em>lazily evaluated sequences</em>. This means that sequence elements are not
6969
available ahead of time and are produced as the result of a computation. The computation
7070
is performed as needed. Evaluation of lazy sequences is known as <em>realization</em>.</p><p>Lazy sequences can be infinite (e.g., the sequence of Fibonacci numbers, a sequence of
7171
dates with a particular interval between them, and so on). If a lazy sequence is finite,

articles/language/namespaces/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h2>Language: Namespaces</h2>
6363
</div>
6464

6565
<p>This guide covers:</p><ul><li>An overview of Clojure namespaces and vars</li><li>How to define namespaces</li><li>How to use functions in other namespaces</li><li><code>require</code>, <code>refer</code> and <code>use</code></li><li>Common compilation errors and typical problems that cause them</li><li>Namespaces and their relation to code compilation in Clojure</li></ul><p>This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
66-
(including images &amp; stylesheets). The source is available <a href="https://github.com/clojure-doc/clojure-doc.github.io">on Github</a>.</p><h2 id="what-version-of-clojure-does-this-guide-cover">What Version of Clojure Does This Guide Cover?</h2><p>This guide covers Clojure 1.11.</p><h2 id="overview">Overview</h2><p>Clojure functions are organized into <em>namespaces</em>. Clojure namespaces
66+
(including images &amp; stylesheets). The source is available <a href="https://github.com/clojure-doc/clojure-doc.github.io">on Github</a>.</p><h2 id="what-version-of-clojure-does-this-guide-cover">What Version of Clojure Does This Guide Cover?</h2><p>This guide covers Clojure 1.12.</p><h2 id="overview">Overview</h2><p>Clojure functions are organized into <em>namespaces</em>. Clojure namespaces
6767
are similar to Java packages and Python modules. Namespaces are
6868
like maps (dictionaries) that map names to <em>vars</em>. In many cases,
6969
those vars store functions in them.</p><h2 id="defining-a-namespace">Defining a Namespace</h2><p>Namespaces are usually defined using the <code>clojure.core/ns</code> macro. In its most basic

cryogen.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Mon, 30 Dec 2024 17:27:18 -0800</lastBuildDate><generator>clj-rss</generator></channel></rss>
1+
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Mon, 30 Dec 2024 18:34:49 -0800</lastBuildDate><generator>clj-rss</generator></channel></rss>

feed.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Mon, 30 Dec 2024 17:27:18 -0800</lastBuildDate><generator>clj-rss</generator></channel></rss>
1+
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Mon, 30 Dec 2024 18:34:49 -0800</lastBuildDate><generator>clj-rss</generator></channel></rss>

sitemap.xml

+37-37
Original file line numberDiff line numberDiff line change
@@ -2,63 +2,63 @@
22
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
33
<url>
44
<loc>
5-
https://clojure-doc.org/archives/index.html
5+
https://clojure-doc.org/articles/language/namespaces/index.html
66
</loc>
77
<lastmod>
88
2024-12-30
99
</lastmod>
1010
</url>
1111
<url>
1212
<loc>
13-
https://clojure-doc.org/tags/index.html
13+
https://clojure-doc.org/articles/language/collections_and_sequences/index.html
1414
</loc>
1515
<lastmod>
1616
2024-12-30
1717
</lastmod>
1818
</url>
1919
<url>
2020
<loc>
21-
https://clojure-doc.org/404.html
21+
https://clojure-doc.org/articles/language/interop/index.html
2222
</loc>
2323
<lastmod>
2424
2024-12-30
2525
</lastmod>
2626
</url>
2727
<url>
2828
<loc>
29-
https://clojure-doc.org/articles/language/namespaces/index.html
29+
https://clojure-doc.org/articles/language/laziness/index.html
3030
</loc>
3131
<lastmod>
3232
2024-12-30
3333
</lastmod>
3434
</url>
3535
<url>
3636
<loc>
37-
https://clojure-doc.org/articles/language/laziness/index.html
37+
https://clojure-doc.org/articles/language/core_overview/index.html
3838
</loc>
3939
<lastmod>
4040
2024-12-30
4141
</lastmod>
4242
</url>
4343
<url>
4444
<loc>
45-
https://clojure-doc.org/articles/language/concurrency_and_parallelism/index.html
45+
https://clojure-doc.org/articles/language/functions/index.html
4646
</loc>
4747
<lastmod>
4848
2024-12-30
4949
</lastmod>
5050
</url>
5151
<url>
5252
<loc>
53-
https://clojure-doc.org/articles/language/polymorphism/index.html
53+
https://clojure-doc.org/articles/language/concurrency_and_parallelism/index.html
5454
</loc>
5555
<lastmod>
5656
2024-12-30
5757
</lastmod>
5858
</url>
5959
<url>
6060
<loc>
61-
https://clojure-doc.org/articles/language/interop/index.html
61+
https://clojure-doc.org/articles/language/glossary/index.html
6262
</loc>
6363
<lastmod>
6464
2024-12-30
@@ -74,79 +74,79 @@ https://clojure-doc.org/articles/language/macros/index.html
7474
</url>
7575
<url>
7676
<loc>
77-
https://clojure-doc.org/articles/language/collections_and_sequences/index.html
77+
https://clojure-doc.org/articles/language/polymorphism/index.html
7878
</loc>
7979
<lastmod>
8080
2024-12-30
8181
</lastmod>
8282
</url>
8383
<url>
8484
<loc>
85-
https://clojure-doc.org/articles/language/core_overview/index.html
85+
https://clojure-doc.org/articles/about/index.html
8686
</loc>
8787
<lastmod>
8888
2024-12-30
8989
</lastmod>
9090
</url>
9191
<url>
9292
<loc>
93-
https://clojure-doc.org/articles/language/functions/index.html
93+
https://clojure-doc.org/articles/content/index.html
9494
</loc>
9595
<lastmod>
9696
2024-12-30
9797
</lastmod>
9898
</url>
9999
<url>
100100
<loc>
101-
https://clojure-doc.org/articles/language/glossary/index.html
101+
https://clojure-doc.org/articles/ecosystem/community/index.html
102102
</loc>
103103
<lastmod>
104104
2024-12-30
105105
</lastmod>
106106
</url>
107107
<url>
108108
<loc>
109-
https://clojure-doc.org/articles/content/index.html
109+
https://clojure-doc.org/articles/ecosystem/libraries_authoring/index.html
110110
</loc>
111111
<lastmod>
112112
2024-12-30
113113
</lastmod>
114114
</url>
115115
<url>
116116
<loc>
117-
https://clojure-doc.org/articles/ecosystem/java_jdbc/using_ddl/index.html
117+
https://clojure-doc.org/articles/ecosystem/generating_documentation/index.html
118118
</loc>
119119
<lastmod>
120120
2024-12-30
121121
</lastmod>
122122
</url>
123123
<url>
124124
<loc>
125-
https://clojure-doc.org/articles/ecosystem/java_jdbc/reusing_connections/index.html
125+
https://clojure-doc.org/articles/ecosystem/java_jdbc/home/index.html
126126
</loc>
127127
<lastmod>
128128
2024-12-30
129129
</lastmod>
130130
</url>
131131
<url>
132132
<loc>
133-
https://clojure-doc.org/articles/ecosystem/java_jdbc/home/index.html
133+
https://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql/index.html
134134
</loc>
135135
<lastmod>
136136
2024-12-30
137137
</lastmod>
138138
</url>
139139
<url>
140140
<loc>
141-
https://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql/index.html
141+
https://clojure-doc.org/articles/ecosystem/java_jdbc/reusing_connections/index.html
142142
</loc>
143143
<lastmod>
144144
2024-12-30
145145
</lastmod>
146146
</url>
147147
<url>
148148
<loc>
149-
https://clojure-doc.org/articles/ecosystem/libraries_authoring/index.html
149+
https://clojure-doc.org/articles/ecosystem/java_jdbc/using_ddl/index.html
150150
</loc>
151151
<lastmod>
152152
2024-12-30
@@ -162,151 +162,151 @@ https://clojure-doc.org/articles/ecosystem/libraries_authoring_lein/index.html
162162
</url>
163163
<url>
164164
<loc>
165-
https://clojure-doc.org/articles/ecosystem/community/index.html
165+
https://clojure-doc.org/articles/ecosystem/web_development/index.html
166166
</loc>
167167
<lastmod>
168168
2024-12-30
169169
</lastmod>
170170
</url>
171171
<url>
172172
<loc>
173-
https://clojure-doc.org/articles/ecosystem/generating_documentation/index.html
173+
https://clojure-doc.org/articles/cookbooks/cli_build_projects/index.html
174174
</loc>
175175
<lastmod>
176176
2024-12-30
177177
</lastmod>
178178
</url>
179179
<url>
180180
<loc>
181-
https://clojure-doc.org/articles/ecosystem/web_development/index.html
181+
https://clojure-doc.org/articles/cookbooks/data_structures/index.html
182182
</loc>
183183
<lastmod>
184184
2024-12-30
185185
</lastmod>
186186
</url>
187187
<url>
188188
<loc>
189-
https://clojure-doc.org/articles/tutorials/editors/index.html
189+
https://clojure-doc.org/articles/cookbooks/growing_a_dsl_with_clojure/index.html
190190
</loc>
191191
<lastmod>
192192
2024-12-30
193193
</lastmod>
194194
</url>
195195
<url>
196196
<loc>
197-
https://clojure-doc.org/articles/tutorials/introduction/index.html
197+
https://clojure-doc.org/articles/cookbooks/strings/index.html
198198
</loc>
199199
<lastmod>
200200
2024-12-30
201201
</lastmod>
202202
</url>
203203
<url>
204204
<loc>
205-
https://clojure-doc.org/articles/tutorials/getting_started_cli/index.html
205+
https://clojure-doc.org/articles/cookbooks/middleware/index.html
206206
</loc>
207207
<lastmod>
208208
2024-12-30
209209
</lastmod>
210210
</url>
211211
<url>
212212
<loc>
213-
https://clojure-doc.org/articles/tutorials/getting_started/index.html
213+
https://clojure-doc.org/articles/cookbooks/files_and_directories/index.html
214214
</loc>
215215
<lastmod>
216216
2024-12-30
217217
</lastmod>
218218
</url>
219219
<url>
220220
<loc>
221-
https://clojure-doc.org/articles/tutorials/getting_started_lein/index.html
221+
https://clojure-doc.org/articles/cookbooks/parsing_xml_with_zippers/index.html
222222
</loc>
223223
<lastmod>
224224
2024-12-30
225225
</lastmod>
226226
</url>
227227
<url>
228228
<loc>
229-
https://clojure-doc.org/articles/tutorials/basic_web_development/index.html
229+
https://clojure-doc.org/articles/cookbooks/math/index.html
230230
</loc>
231231
<lastmod>
232232
2024-12-30
233233
</lastmod>
234234
</url>
235235
<url>
236236
<loc>
237-
https://clojure-doc.org/articles/about/index.html
237+
https://clojure-doc.org/articles/cookbooks/date_and_time/index.html
238238
</loc>
239239
<lastmod>
240240
2024-12-30
241241
</lastmod>
242242
</url>
243243
<url>
244244
<loc>
245-
https://clojure-doc.org/articles/cookbooks/cli_build_projects/index.html
245+
https://clojure-doc.org/articles/tutorials/getting_started/index.html
246246
</loc>
247247
<lastmod>
248248
2024-12-30
249249
</lastmod>
250250
</url>
251251
<url>
252252
<loc>
253-
https://clojure-doc.org/articles/cookbooks/strings/index.html
253+
https://clojure-doc.org/articles/tutorials/introduction/index.html
254254
</loc>
255255
<lastmod>
256256
2024-12-30
257257
</lastmod>
258258
</url>
259259
<url>
260260
<loc>
261-
https://clojure-doc.org/articles/cookbooks/middleware/index.html
261+
https://clojure-doc.org/articles/tutorials/getting_started_lein/index.html
262262
</loc>
263263
<lastmod>
264264
2024-12-30
265265
</lastmod>
266266
</url>
267267
<url>
268268
<loc>
269-
https://clojure-doc.org/articles/cookbooks/math/index.html
269+
https://clojure-doc.org/articles/tutorials/basic_web_development/index.html
270270
</loc>
271271
<lastmod>
272272
2024-12-30
273273
</lastmod>
274274
</url>
275275
<url>
276276
<loc>
277-
https://clojure-doc.org/articles/cookbooks/growing_a_dsl_with_clojure/index.html
277+
https://clojure-doc.org/articles/tutorials/editors/index.html
278278
</loc>
279279
<lastmod>
280280
2024-12-30
281281
</lastmod>
282282
</url>
283283
<url>
284284
<loc>
285-
https://clojure-doc.org/articles/cookbooks/data_structures/index.html
285+
https://clojure-doc.org/articles/tutorials/getting_started_cli/index.html
286286
</loc>
287287
<lastmod>
288288
2024-12-30
289289
</lastmod>
290290
</url>
291291
<url>
292292
<loc>
293-
https://clojure-doc.org/articles/cookbooks/parsing_xml_with_zippers/index.html
293+
https://clojure-doc.org/tags/index.html
294294
</loc>
295295
<lastmod>
296296
2024-12-30
297297
</lastmod>
298298
</url>
299299
<url>
300300
<loc>
301-
https://clojure-doc.org/articles/cookbooks/files_and_directories/index.html
301+
https://clojure-doc.org/archives/index.html
302302
</loc>
303303
<lastmod>
304304
2024-12-30
305305
</lastmod>
306306
</url>
307307
<url>
308308
<loc>
309-
https://clojure-doc.org/articles/cookbooks/date_and_time/index.html
309+
https://clojure-doc.org/404.html
310310
</loc>
311311
<lastmod>
312312
2024-12-30

0 commit comments

Comments
 (0)