Skip to content

Commit 87b8f44

Browse files
committed
v1.4.0
1 parent 3310f21 commit 87b8f44

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

core/procs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const (
3838
PRINT_IF_NOT_NIL
3939
)
4040

41-
const VERSION = "v1.3.5"
41+
const VERSION = "v1.4.0"
4242

4343
const (
4444
CLJ Dialect = iota

docs/joker.io.html

+14
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ <h2 id="_index">Index</h2>
3737
<li>
3838
<a href="#pipe">pipe</a>
3939
</li>
40+
<li>
41+
<a href="#read">read</a>
42+
</li>
4043

4144
</ul>
4245
<h2 id="_constants">Constants</h2>
@@ -84,6 +87,17 @@ <h3 class="Function" id="pipe">pipe</h3>
8487
Returns a vector [reader, writer].</p>
8588

8689

90+
</li>
91+
<li>
92+
<h3 class="Function" id="read">read</h3>
93+
<span class="var-kind Function">Function</span>
94+
<span class="var-added">v1.3.6</span>
95+
<pre class="var-usage"><div><code>(read r n)</code></div>
96+
</pre>
97+
<p class="var-docstr">Reads up to n bytes from IOReader r and returns a string of the read bytes.<br>
98+
May return a shorter (or blank) string if EOF is encountered.</p>
99+
100+
87101
</li>
88102

89103
</ul>

docs/joker.url.html

+17
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ <h2 id="_summary">Summary</h2>
2929
<h2 id="_index">Index</h2>
3030
<ul class="index">
3131
<li>
32+
<a href="#parse-query">parse-query</a>
33+
</li>
34+
<li>
3235
<a href="#path-escape">path-escape</a>
3336
</li>
3437
<li>
@@ -54,6 +57,20 @@ <h2 id="_variables">Variables</h2>
5457
<h2 id="_functions">Functions, Macros, and Special Forms</h2>
5558
<ul>
5659
<li>
60+
<h3 class="Function" id="parse-query">parse-query</h3>
61+
<span class="var-kind Function">Function</span>
62+
<span class="var-added">v1.3.6</span>
63+
<pre class="var-usage"><div><code>(parse-query s)</code></div>
64+
</pre>
65+
<p class="var-docstr">Parses the URL-encoded query string and returns a map listing the vectors of values specified for each key.<br>
66+
Always returns a non-nil map containing all the valid query parameters found.<br>
67+
Query is expected to be a list of key=value settings separated by ampersands. A setting without<br>
68+
an equals sign is interpreted as a key set to an empty value. Settings containing a non-URL-encoded<br>
69+
semicolon are considered invalid. </p>
70+
71+
72+
</li>
73+
<li>
5774
<h3 class="Function" id="path-escape">path-escape</h3>
5875
<span class="var-kind Function">Function</span>
5976
<span class="var-added">v1.0</span>

docs/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)