From bf6ffd6d046c6ab9204a593623eb91f81ebe1434 Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Mon, 24 Oct 2011 00:39:48 -0700 Subject: [PATCH 01/12] Initial checkin --- api-index.html | 208 ++++++++++++++++++++++++ index-0.1.1.clj | 133 ++++++++++++++++ index.html | 220 ++++++++++++++++++++++++++ static/clojure-icon.gif | Bin 0 -> 2174 bytes static/clojure.css | 53 +++++++ static/favicon.png | Bin 0 -> 656 bytes static/internal.css | 18 +++ static/space/content-background.gif | Bin 0 -> 397 bytes static/space/left-nav-background.gif | Bin 0 -> 638 bytes static/space/left-nav-bottom.gif | Bin 0 -> 936 bytes static/space/left-nav-divider.gif | Bin 0 -> 52 bytes static/space/resources-background.gif | Bin 0 -> 550 bytes static/space/toc-background.gif | Bin 0 -> 457 bytes static/wiki.css | 22 +++ 14 files changed, 654 insertions(+) create mode 100644 api-index.html create mode 100644 index-0.1.1.clj create mode 100644 index.html create mode 100644 static/clojure-icon.gif create mode 100644 static/clojure.css create mode 100644 static/favicon.png create mode 100644 static/internal.css create mode 100644 static/space/content-background.gif create mode 100644 static/space/left-nav-background.gif create mode 100644 static/space/left-nav-bottom.gif create mode 100644 static/space/left-nav-divider.gif create mode 100644 static/space/resources-background.gif create mode 100644 static/space/toc-background.gif create mode 100644 static/wiki.css diff --git a/api-index.html b/api-index.html new file mode 100644 index 0000000..e13c74f --- /dev/null +++ b/api-index.html @@ -0,0 +1,208 @@ + + + Index - Native codec implementations 0.1.1 API documentation + + + + + + + + + + +
+ +
+ +
+
+
+
+
+ +

Index of Public Functions and Variables - Native codec implementations 0.1.1 (in development)

+This page has an alphabetical index of all the documented functions and variables +in Native codec implementations. + + + +
+Shortcuts:
+A B C D + E F G H + I J K L + M +
+N O P Q + R S T U + V W X Y + Z +
+Other +
+
+ +
+

A

+
+
+
+

B

+
+
+
+

C

+
+
+
+

D

+
+ dec-length                   function      clojure.data.codec.base64 Calculates what would be the length after d...
+ decode                       function      clojure.data.codec.base64 Returns a base64 decoded byte array.  Note:...
+ decode!                      function      clojure.data.codec.base64 Reads from the input byte array for the spe...
+ decoding-transfer            function      clojure.data.codec.base64 Base64 decodes from input-stream to output-...
+
+
+

E

+
+ enc-length                   function      clojure.data.codec.base64 Calculates what would be the length after e...
+ encode                       function      clojure.data.codec.base64 Returns a base64 encoded byte array..
+ encode!                      function      clojure.data.codec.base64 Reads from the input byte array for the spe...
+ encoding-transfer            function      clojure.data.codec.base64 Base64 encodes from input-stream to output-...
+
+
+

F

+
+
+
+

G

+
+
+
+

H

+
+
+
+

I

+
+
+
+

J

+
+
+
+

K

+
+
+
+

L

+
+
+
+

M

+
+
+
+

N

+
+
+
+

O

+
+
+
+

P

+
+ pad-length                   function      clojure.data.codec.base64 Returns the length of padding on the end of...
+
+
+

Q

+
+
+
+

R

+
+
+
+

S

+
+
+
+

T

+
+
+
+

U

+
+
+
+

V

+
+
+
+

W

+
+
+
+

X

+
+
+
+

Y

+
+
+
+

Z

+
+
+
+

Other

+
+
+
+ +
+
+
+
+
+ +
+
Logo & site design by Tom Hickey.
+ Clojure auto-documentation system by Tom Faulhaber.
+
+ + + + \ No newline at end of file diff --git a/index-0.1.1.clj b/index-0.1.1.clj new file mode 100644 index 0000000..ecfc332 --- /dev/null +++ b/index-0.1.1.clj @@ -0,0 +1,133 @@ +{:namespaces + ({:source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec/clojure.data.codec.base64-api.html", + :name "clojure.data.codec.base64", + :author "Alex Taggart", + :doc "Functions for working with base64 encodings."}), + :vars + ({:arglists ([in-length pad-length]), + :name "dec-length", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L39", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/dec-length", + :doc + "Calculates what would be the length after decoding of an input array of length\nin-length with the specified padding length.", + :var-type "function", + :line 39, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input] [input offset length]), + :name "decode", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L139", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode", + :doc + "Returns a base64 decoded byte array.\n\nNote: length must be a multiple of 4.", + :var-type "function", + :line 139, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input offset length output]), + :name "decode!", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L59", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode!", + :doc + "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 decodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: length must be a multiple of 4.", + :var-type "function", + :line 59, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input-stream output-stream & opts]), + :name "decoding-transfer", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L260", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decoding-transfer", + :doc + "Base64 decodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 4; default is 8192.", + :var-type "function", + :line 260, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([n]), + :name "enc-length", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L31", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/enc-length", + :doc + "Calculates what would be the length after encoding of an input array of length n.", + :var-type "function", + :line 31, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input] [input offset length]), + :name "encode", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L230", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode", + :doc "Returns a base64 encoded byte array.", + :var-type "function", + :line 230, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input offset length output]), + :name "encode!", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L151", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode!", + :doc + "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 encodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: if using partial input, length must be a multiple of 3 to avoid padding.", + :var-type "function", + :line 151, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input-stream output-stream & opts]), + :name "encoding-transfer", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L278", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encoding-transfer", + :doc + "Base64 encodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 3; default is 6144.", + :var-type "function", + :line 278, + :file "src/main/clojure/clojure/data/codec/base64.clj"} + {:arglists ([input offset length]), + :name "pad-length", + :namespace "clojure.data.codec.base64", + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L49", + :raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/pad-length", + :doc "Returns the length of padding on the end of the input array.", + :var-type "function", + :line 49, + :file "src/main/clojure/clojure/data/codec/base64.clj"})} diff --git a/index.html b/index.html new file mode 100644 index 0000000..bba4b69 --- /dev/null +++ b/index.html @@ -0,0 +1,220 @@ + + + clojure.data.codec.base64 - Native codec implementations 0.1.1 API documentation + + + + + + + + + + +
+ +
+ +
+
+
+
+
+ +

API for clojure.data.codec.base64 + - Native codec implementations 0.1.1 (in development) +

+by Alex Taggart
+
Full namespace name: clojure.data.codec.base64 +

+

Overview

+
Functions for working with base64 encodings.
+ + +
+

Public Variables and Functions

+
+
+
+

dec-length

+ function
+
Usage: (dec-length in-length pad-length)
+
+
Calculates what would be the length after decoding of an input array of length
+in-length with the specified padding length.
+ + + Source +
+
+
+

decode

+ function
+
Usage: (decode input)
+       (decode input offset length)
+
+
Returns a base64 decoded byte array.
+
+Note: length must be a multiple of 4.
+ + + Source +
+
+
+

decode!

+ function
+
Usage: (decode! input offset length output)
+
+
Reads from the input byte array for the specified length starting at the offset
+index, and base64 decodes into the output array starting at index 0. Returns the
+length written to output.
+
+Note: length must be a multiple of 4.
+ + + Source +
+
+
+

decoding-transfer

+ function
+
Usage: (decoding-transfer input-stream output-stream & opts)
+
+
Base64 decodes from input-stream to output-stream. Returns nil or throws IOException.
+
+Options are key/value pairs and may be one of
+  :buffer-size  read buffer size to use, must be a multiple of 4; default is 8192.
+ + + Source +
+
+
+

enc-length

+ function
+
Usage: (enc-length n)
+
+
Calculates what would be the length after encoding of an input array of length n.
+ + + Source +
+
+
+

encode

+ function
+
Usage: (encode input)
+       (encode input offset length)
+
+
Returns a base64 encoded byte array.
+ + + Source +
+
+
+

encode!

+ function
+
Usage: (encode! input offset length output)
+
+
Reads from the input byte array for the specified length starting at the offset
+index, and base64 encodes into the output array starting at index 0. Returns the
+length written to output.
+
+Note: if using partial input, length must be a multiple of 3 to avoid padding.
+ + + Source +
+
+
+

encoding-transfer

+ function
+
Usage: (encoding-transfer input-stream output-stream & opts)
+
+
Base64 encodes from input-stream to output-stream. Returns nil or throws IOException.
+
+Options are key/value pairs and may be one of
+  :buffer-size  read buffer size to use, must be a multiple of 3; default is 6144.
+ + + Source +
+
+
+

pad-length

+ function
+
Usage: (pad-length input offset length)
+
+
Returns the length of padding on the end of the input array.
+ + + Source +
+ + +
+
+
+
+
+ +
+
Logo & site design by Tom Hickey.
+ Clojure auto-documentation system by Tom Faulhaber.
+
+ + + + \ No newline at end of file diff --git a/static/clojure-icon.gif b/static/clojure-icon.gif new file mode 100644 index 0000000000000000000000000000000000000000..84eee16d95b131330e74e55f834849f27a1bb353 GIT binary patch literal 2174 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 literal 0 HcmV?d00001 diff --git a/static/space/left-nav-background.gif b/static/space/left-nav-background.gif new file mode 100644 index 0000000000000000000000000000000000000000..e6e590449ccd23d463edd3906bb471d156c98b1b GIT binary patch literal 638 zcmV-^0)hQUNk%w1VW_{rmg-{QUg*`1twx`SG000F4Fa>i|F(VTqf&jn=24n~X z=cuA!TefhVvMG$-Zk^9Ey`Ld3>0enwy-R zoOE(3CLbgN1Oo_AP*{i(1`3C%O-ztW9y&=tcR-%KzQ4ekY`ke=9$lyi1qHCJ0n5u! z83RmTAb>|UJfXqe-rw3TKBO&@0RvxLsTT)RRacD57zosnCgRtWKj8fRy*OrQh!{48 z1D7Yu7&%M0Wm>f)By#CXx%EyfmTYXSKng+$B!jZ}v@gxcM Y3^!j9Sm0_$m==|C{jCE{6%hacJAN`7+yDRo literal 0 HcmV?d00001 diff --git a/static/space/left-nav-bottom.gif b/static/space/left-nav-bottom.gif new file mode 100644 index 0000000000000000000000000000000000000000..061c0895704895359a1f290af448a538eee299e7 GIT binary patch literal 936 zcmZ?wbhEHbT)`m3aFv1K|NsC0{{8#=_wS!Se}4b|{r&s*XV0Gf`0?Z3y?gK9zyJC3 z=dWMCu3fwK?c29^@7_Il@Zjs$uQzYreE$6Tty{P5-o5+r!(kjzIyfQ#ful$uV24$4<9{x^!fAWJ9qB9ef##qhYz=J z-)5i~DE?#to1p_DL4IOj`|seEP^cj%#?6#?fQN(OLWTm@45zi%wMtLFt=j)!L&YE7 zh>bCugB3VqJokm%g*nWjOSfch-gxG0 zPg7KM^M&-h!eSQoS-0jey0I_t^j^Gd&C>qMEo;xcdAsT2@u18}1zv>EN;dT!+ODRBleY>e=ERs?~ecz+0;_?S-$-1coEb zf@(Gv83$Akx3ep1NE9$MzL;F>A8r|Ss!Y%`Q|<9grKt~FTG$2ECcFqZbYlh+pG|6A|Tl^+#y`J;C?7ho`NV|P+tc_b(%0Ev!5b&_Ui%Hs`LDaiUVfAZ1%jJrE z%M{*inOEw3C`L#tW0kzue7Wdty3?6Ye01B9px{`2dfxH<((~VxzdO~luqCAO=FAWW zRxybN2Np$z2M5{D?rcB7a9pzCItzc#R!7FCsbWWO<`!ChO)OOX8s6r(UGzc&GpC)w z!Az-y2@cF_JSDgpk9!_qWa4popum=*dEmwb^{?9_gR)GP-mY&FC|JPEc1MJfS>%Gc zGE2wJ7xx%g7fg7-su|FEDh2l~_u3>cZD3PKziO|xDu z7r%8xvyo9;X9YVeM@mKmqr=UVMH0^4t9^DlQFzkmDT z`|XEsS08z_;^4ho58kXeaBtpk?_M2YC&t>zRi>(XT_Hm~Mh8@^g2P^a6Q(Pa18bLXA* z`gR`(KCE1FEI=>+l*zmc4o@x8zA3t|2UCt2@7$p-h z(yATIq1gMs1Nz;lo36&a*uxUlULcR6pQ-=+4uVYNwAn&1{^K zwe;p`kvWmYHDM=%MR-qa08ahoB2ck{|=XLc&8-5E;SkR+~AW(5Q4uRdH^I!(gDR5E23*@te39 zw%G#UQ*FE7@VM*K$!-M(V}cMKPL2pb0tYyRY;uT+ii`RJOb4!0eg^pXCaot3PC=t)W0OoEt8d@JV4Sd&hYo=- zrHVBM@X<0!8s~N0fhO$Ox3V1NQ--Snn2SVw1ZwKj8r;90L}@vBGeM9A5dZ)?W#ZO+ literal 0 HcmV?d00001 diff --git a/static/wiki.css b/static/wiki.css new file mode 100644 index 0000000..1cb1bdd --- /dev/null +++ b/static/wiki.css @@ -0,0 +1,22 @@ +/* Wiki Rendered Styles */ +.wiki { line-height: 150%; font-family: arial, helvetica, sans-serif; font-size: small; } +.wiki h1 { font-weight: bold; padding: 5px 0 0 0; margin: 0; font-size: 1.4em; } +.wiki h2 { font-weight: bold; padding: 5px 0 0 0; margin: 0; font-size: 1.3em; } +.wiki h3 { font-weight: bold; padding: 5px 0 0 0; margin: 0; font-size: 1.1em; } +.wiki h4 { font-weight: normal; padding: 5px 0 0 0; margin: 0; font-size: 1.066em; } +.wiki h5 { font-weight: normal; padding: 5px 0 0 0; margin: 0; font-size: 1.033em; } +.wiki h6 { font-weight: normal; padding: 5px 0 0 0; margin: 0; font-size: 1.0em; } +.wiki table { border-collapse: collapse; margin: 10px 0; font-size: small; } +.wiki p { margin: 0; padding: 0; padding: 5px 0; } +.wiki td { border: 1px solid #DDD; } +.wiki #toc { border: 1px solid #AAA; background: #fff; padding: 5px; margin: 0 0 10px 10px; width: 25%; float: right; clear: right;} +.wiki #toc h1 { font-weight: normal; font-size: 1.2em; padding: 0; } +.wiki #toc a:hover { color: #00D; background: #FFD; } + +.wiki hr { height: 1px; color: #AAA; background-color: #AAA; border: 0; margin: 0 10px; } +.wiki ul { padding: .5em 0 0 3em; margin: 0; } +.wiki ol { padding: .5em 0 0 3em; margin: 0; } +.wiki ul.quotelist { list-style: none; } +.wiki tt { font-size: small; } +.wiki img { border: 0; padding: 4px; } + From 540285a892652a1e77f2e5d94185642b2c253fc2 Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Sun, 25 Mar 2012 22:47:02 -0700 Subject: [PATCH 02/12] Autodoc commit for master/1629d9b8 --- api-index.html | 85 ++++++++++++------ index.html | 233 +++++++++++++++++++++++++++---------------------- 2 files changed, 184 insertions(+), 134 deletions(-) diff --git a/api-index.html b/api-index.html index e13c74f..22789b6 100644 --- a/api-index.html +++ b/api-index.html @@ -43,7 +43,7 @@

data.codec A
-

Index of Public Functions and Variables - Native codec implementations 0.1.1 (in development)

+

Index of Public Functions and Variables - Native codec implementations 0.1.1 (in development)

This page has an alphabetical index of all the documented functions and variables in Native codec implementations. @@ -72,15 +72,18 @@

data.codec A

A

-
+ +

B

-
+ +

C

-
+ +

D

@@ -88,7 +91,8 @@ 

D

decode function clojure.data.codec.base64 Returns a base64 decoded byte array. Note:... decode! function clojure.data.codec.base64 Reads from the input byte array for the spe... decoding-transfer function clojure.data.codec.base64 Base64 decodes from input-stream to output-... -
+ +

E

@@ -96,96 +100,119 @@ 

E

encode function clojure.data.codec.base64 Returns a base64 encoded byte array.. encode! function clojure.data.codec.base64 Reads from the input byte array for the spe... encoding-transfer function clojure.data.codec.base64 Base64 encodes from input-stream to output-... -
+ +

F

-
+ +

G

-
+ +

H

-
+ +

I

-
+ +

J

-
+ +

K

-
+ +

L

-
+ +

M

-
+ +

N

-
+ +

O

-
+ +

P

  pad-length                   function      clojure.data.codec.base64 Returns the length of padding on the end of...
-
+ +

Q

-
+ +

R

-
+ +

S

-
+ +

T

-
+ +

U

-
+ +

V

-
+ +

W

-
+ +

X

-
+ +

Y

-
+ +

Z

-
+ +

Other

-
+ +
- diff --git a/index-0.1.1.clj b/index-0.1.1.clj index ecfc332..fb11936 100644 --- a/index-0.1.1.clj +++ b/index-0.1.1.clj @@ -1,133 +1,133 @@ {:namespaces - ({:source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + ({:doc "Functions for working with base64 encodings.", + :author "Alex Taggart", + :name "clojure.data.codec.base64", :wiki-url "http://clojure.github.com/data.codec/clojure.data.codec.base64-api.html", - :name "clojure.data.codec.base64", - :author "Alex Taggart", - :doc "Functions for working with base64 encodings."}), + :source-url + "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj"}), :vars - ({:arglists ([in-length pad-length]), + ({:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "dec-length", - :namespace "clojure.data.codec.base64", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L39", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/dec-length", + :line 39, + :var-type "function", + :arglists ([in-length pad-length]), :doc "Calculates what would be the length after decoding of an input array of length\nin-length with the specified padding length.", - :var-type "function", - :line 39, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input] [input offset length]), - :name "decode", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/dec-length"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "decode", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L139", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode", + :line 139, + :var-type "function", + :arglists ([input] [input offset length]), :doc "Returns a base64 decoded byte array.\n\nNote: length must be a multiple of 4.", - :var-type "function", - :line 139, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input offset length output]), - :name "decode!", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "decode!", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L59", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode!", + :line 59, + :var-type "function", + :arglists ([input offset length output]), :doc "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 decodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: length must be a multiple of 4.", - :var-type "function", - :line 59, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input-stream output-stream & opts]), - :name "decoding-transfer", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode!"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "decoding-transfer", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L260", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decoding-transfer", + :line 260, + :var-type "function", + :arglists ([input-stream output-stream & opts]), :doc "Base64 decodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 4; default is 8192.", - :var-type "function", - :line 260, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([n]), - :name "enc-length", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decoding-transfer"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "enc-length", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L31", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/enc-length", + :line 31, + :var-type "function", + :arglists ([n]), :doc "Calculates what would be the length after encoding of an input array of length n.", - :var-type "function", - :line 31, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input] [input offset length]), - :name "encode", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/enc-length"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "encode", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L230", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode", - :doc "Returns a base64 encoded byte array.", - :var-type "function", :line 230, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input offset length output]), - :name "encode!", + :var-type "function", + :arglists ([input] [input offset length]), + :doc "Returns a base64 encoded byte array.", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "encode!", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L151", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode!", + :line 151, + :var-type "function", + :arglists ([input offset length output]), :doc "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 encodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: if using partial input, length must be a multiple of 3 to avoid padding.", - :var-type "function", - :line 151, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input-stream output-stream & opts]), - :name "encoding-transfer", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode!"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "encoding-transfer", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L278", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encoding-transfer", + :line 278, + :var-type "function", + :arglists ([input-stream output-stream & opts]), :doc "Base64 encodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 3; default is 6144.", - :var-type "function", - :line 278, - :file "src/main/clojure/clojure/data/codec/base64.clj"} - {:arglists ([input offset length]), - :name "pad-length", :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encoding-transfer"} + {:raw-source-url + "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + :name "pad-length", + :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L49", - :raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", - :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/pad-length", - :doc "Returns the length of padding on the end of the input array.", - :var-type "function", :line 49, - :file "src/main/clojure/clojure/data/codec/base64.clj"})} + :var-type "function", + :arglists ([input offset length]), + :doc "Returns the length of padding on the end of the input array.", + :namespace "clojure.data.codec.base64", + :wiki-url + "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/pad-length"})} diff --git a/index.html b/index.html index 5fc1611..d4292a0 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,12 @@ - + clojure.data.codec.base64 - Native codec implementations 0.1.1 API documentation - - - - - + + + + + From 2bfee16c7c2df7dc35b541fe7c69e38ffdb75c7f Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Sat, 2 Jan 2016 18:26:33 -0800 Subject: [PATCH 08/12] Autodoc commit for master/f5d33f46 --- api-index.html | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api-index.html b/api-index.html index 7ca29cd..0ba5b21 100644 --- a/api-index.html +++ b/api-index.html @@ -221,7 +221,7 @@

Other

Logo & site design by Tom Hickey.
diff --git a/index.html b/index.html index d4292a0..174516c 100644 --- a/index.html +++ b/index.html @@ -230,7 +230,7 @@

pad-length

Logo & site design by Tom Hickey.
From 7f6b08f7add01aeeb86b4d9594b91432aaf4b2d1 Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Mon, 6 Jun 2016 12:41:54 -0700 Subject: [PATCH 09/12] Autodoc commit for master/f5d33f46 --- api-index.html | 12 ++++++------ index-0.1.1.clj | 21 ++++++++++----------- index.html | 12 ++++++++++++ 3 files changed, 28 insertions(+), 17 deletions(-) diff --git a/api-index.html b/api-index.html index 0ba5b21..a9aff1c 100644 --- a/api-index.html +++ b/api-index.html @@ -43,19 +43,19 @@

data.codec A

Index of Public Functions and Variables - Native codec implementations 0.1.1 (in development)

This page has an alphabetical index of all the documented functions and variables -in Native codec implementations. +in Native codec implementations. - -
+

+

Shortcuts:
A B C D E F G H - I J K L + I J K L M
N O P Q diff --git a/index-0.1.1.clj b/index-0.1.1.clj index fb11936..bc407ee 100644 --- a/index-0.1.1.clj +++ b/index-0.1.1.clj @@ -2,8 +2,7 @@ ({:doc "Functions for working with base64 encodings.", :author "Alex Taggart", :name "clojure.data.codec.base64", - :wiki-url - "http://clojure.github.com/data.codec/clojure.data.codec.base64-api.html", + :wiki-url "http://clojure.github.io/data.codec/index.html", :source-url "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj"}), :vars @@ -20,7 +19,7 @@ "Calculates what would be the length after decoding of an input array of length\nin-length with the specified padding length.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/dec-length"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/dec-length"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "decode", @@ -34,7 +33,7 @@ "Returns a base64 decoded byte array.\n\nNote: length must be a multiple of 4.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decode"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "decode!", @@ -48,7 +47,7 @@ "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 decodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: length must be a multiple of 4.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decode!"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decode!"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "decoding-transfer", @@ -62,7 +61,7 @@ "Base64 decodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 4; default is 8192.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/decoding-transfer"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decoding-transfer"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "enc-length", @@ -76,7 +75,7 @@ "Calculates what would be the length after encoding of an input array of length n.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/enc-length"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/enc-length"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "encode", @@ -89,7 +88,7 @@ :doc "Returns a base64 encoded byte array.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encode"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "encode!", @@ -103,7 +102,7 @@ "Reads from the input byte array for the specified length starting at the offset\nindex, and base64 encodes into the output array starting at index 0. Returns the\nlength written to output.\n\nNote: if using partial input, length must be a multiple of 3 to avoid padding.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encode!"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encode!"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "encoding-transfer", @@ -117,7 +116,7 @@ "Base64 encodes from input-stream to output-stream. Returns nil or throws IOException.\n\nOptions are key/value pairs and may be one of\n :buffer-size read buffer size to use, must be a multiple of 3; default is 6144.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/encoding-transfer"} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encoding-transfer"} {:raw-source-url "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", :name "pad-length", @@ -130,4 +129,4 @@ :doc "Returns the length of padding on the end of the input array.", :namespace "clojure.data.codec.base64", :wiki-url - "http://clojure.github.com/data.codec//clojure.data.codec.base64-api.html#clojure.data.codec.base64/pad-length"})} + "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/pad-length"})} diff --git a/index.html b/index.html index 174516c..ec15618 100644 --- a/index.html +++ b/index.html @@ -81,6 +81,9 @@

Table of Contents

pad-length
+
+ +

@@ -111,6 +114,7 @@

dec-length

Calculates what would be the length after decoding of an input array of length
 in-length with the specified padding length.
+

     
     
     Source
@@ -125,6 +129,7 @@ 

decode

Returns a base64 decoded byte array.
 
 Note: length must be a multiple of 4.
+

     
     
     Source
@@ -140,6 +145,7 @@ 

decode!

length written to output. Note: length must be a multiple of 4. +

     
     
     Source
@@ -154,6 +160,7 @@ 

decoding-transfer

Options are key/value pairs and may be one of :buffer-size read buffer size to use, must be a multiple of 4; default is 8192. +

     
     
     Source
@@ -165,6 +172,7 @@ 

enc-length

Usage: (enc-length n)
 
Calculates what would be the length after encoding of an input array of length n.
+

     
     
     Source
@@ -177,6 +185,7 @@ 

encode

(encode input offset length)
Returns a base64 encoded byte array.
+

     
     
     Source
@@ -192,6 +201,7 @@ 

encode!

length written to output. Note: if using partial input, length must be a multiple of 3 to avoid padding. +

     
     
     Source
@@ -206,6 +216,7 @@ 

encoding-transfer

Options are key/value pairs and may be one of :buffer-size read buffer size to use, must be a multiple of 3; default is 6144. +

     
     
     Source
@@ -217,6 +228,7 @@ 

pad-length

Usage: (pad-length input offset length)
 
Returns the length of padding on the end of the input array.
+

     
     
     Source

From 0baadff0f80de0b06efbd95ab82e23e276461968 Mon Sep 17 00:00:00 2001
From: Tom Faulhaber 
Date: Tue, 10 Jan 2017 21:28:30 -0800
Subject: [PATCH 10/12] Autodoc commit for master/acc6130d

---
 api-index.html | 2 +-
 index.html     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/api-index.html b/api-index.html
index a9aff1c..9e2e6f8 100644
--- a/api-index.html
+++ b/api-index.html
@@ -221,7 +221,7 @@ 

Other

Logo & site design by Tom Hickey.
diff --git a/index.html b/index.html index ec15618..1c39b18 100644 --- a/index.html +++ b/index.html @@ -242,7 +242,7 @@

pad-length

Logo & site design by Tom Hickey.
From d67197c14198db34bc4779ced9a7594e4588321f Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Tue, 10 Jan 2017 22:34:57 -0800 Subject: [PATCH 11/12] Autodoc commit for master/d441646e --- index-0.1.1.clj | 38 +++++++++++++++++++------------------- index.html | 18 +++++++++--------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/index-0.1.1.clj b/index-0.1.1.clj index bc407ee..e99fdbf 100644 --- a/index-0.1.1.clj +++ b/index-0.1.1.clj @@ -4,14 +4,14 @@ :name "clojure.data.codec.base64", :wiki-url "http://clojure.github.io/data.codec/index.html", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj"}), + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj"}), :vars ({:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "dec-length", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L39", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L39", :line 39, :var-type "function", :arglists ([in-length pad-length]), @@ -21,11 +21,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/dec-length"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "decode", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L139", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L139", :line 139, :var-type "function", :arglists ([input] [input offset length]), @@ -35,11 +35,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decode"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "decode!", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L59", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L59", :line 59, :var-type "function", :arglists ([input offset length output]), @@ -49,11 +49,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decode!"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "decoding-transfer", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L260", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L260", :line 260, :var-type "function", :arglists ([input-stream output-stream & opts]), @@ -63,11 +63,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/decoding-transfer"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "enc-length", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L31", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L31", :line 31, :var-type "function", :arglists ([n]), @@ -77,11 +77,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/enc-length"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "encode", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L230", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L230", :line 230, :var-type "function", :arglists ([input] [input offset length]), @@ -90,11 +90,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encode"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "encode!", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L151", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L151", :line 151, :var-type "function", :arglists ([input offset length output]), @@ -104,11 +104,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encode!"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "encoding-transfer", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L278", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L278", :line 278, :var-type "function", :arglists ([input-stream output-stream & opts]), @@ -118,11 +118,11 @@ :wiki-url "http://clojure.github.io/data.codec//index.html#clojure.data.codec.base64/encoding-transfer"} {:raw-source-url - "https://github.com/clojure/data.codec/raw/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj", + "https://github.com/clojure/data.codec/raw/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj", :name "pad-length", :file "src/main/clojure/clojure/data/codec/base64.clj", :source-url - "https://github.com/clojure/data.codec/blob/766746c11459a70cab27f7e0668a0be1f35fd679/src/main/clojure/clojure/data/codec/base64.clj#L49", + "https://github.com/clojure/data.codec/blob/0261a9a265ab637c9c07cac6693bad28201d1840/src/main/clojure/clojure/data/codec/base64.clj#L49", :line 49, :var-type "function", :arglists ([input offset length]), diff --git a/index.html b/index.html index 1c39b18..9d1999d 100644 --- a/index.html +++ b/index.html @@ -117,7 +117,7 @@

dec-length


     
     
-    Source
+    Source
   


@@ -132,7 +132,7 @@

decode


     
     
-    Source
+    Source
   


@@ -148,7 +148,7 @@

decode!


     
     
-    Source
+    Source
   


@@ -163,7 +163,7 @@

decoding-transfer


     
     
-    Source
+    Source
   


@@ -175,7 +175,7 @@

enc-length


     
     
-    Source
+    Source
   


@@ -188,7 +188,7 @@

encode


     
     
-    Source
+    Source
   


@@ -204,7 +204,7 @@

encode!


     
     
-    Source
+    Source
   


@@ -219,7 +219,7 @@

encoding-transfer


     
     
-    Source
+    Source
   


@@ -231,7 +231,7 @@

pad-length


     
     
-    Source
+    Source
   
From eced9c47ea65ce3e85a69b5a94889bba2a5ad373 Mon Sep 17 00:00:00 2001 From: clojure-build Date: Wed, 16 Aug 2023 15:48:12 +0000 Subject: [PATCH 12/12] Autodoc commit --- api-index.html | 12 ++++++------ index.html | 30 +++++++++++++++--------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/api-index.html b/api-index.html index 9e2e6f8..340faf9 100644 --- a/api-index.html +++ b/api-index.html @@ -1,7 +1,7 @@ - Index - Native codec implementations 0.1.1 API documentation + Index - data.codec 0.1.2-SNAPSHOT API documentation @@ -25,14 +25,14 @@

data.codec A @@ -41,9 +41,9 @@

data.codec A
-

Index of Public Functions and Variables - Native codec implementations 0.1.1 (in development)

+

Index of Public Functions and Variables - data.codec 0.1.2-SNAPSHOT (in development)

This page has an alphabetical index of all the documented functions and variables -in Native codec implementations. +in data.codec.