Skip to content

Commit

Permalink
Add notes on use of lsb namespaces from outside cljam
Browse files Browse the repository at this point in the history
  • Loading branch information
athos committed Dec 8, 2023
1 parent c01eb05 commit 8612caa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/cljam/io/util/lsb/data_io.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
(ns cljam.io.util.lsb.data-io
"Functions for reading little-endian data using DataInput."
"Functions for reading little-endian data using DataInput.
NOTE: This namespace is intended to be used only from within cljam, and should
not be used outside cljam."
(:refer-clojure :exclude [read-string])
(:require [cljam.io.util.byte-buffer :as bb])
(:import [java.io ByteArrayOutputStream DataInput]))
Expand Down
5 changes: 4 additions & 1 deletion src/cljam/io/util/lsb/io_stream.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
(ns cljam.io.util.lsb.io-stream
"Functions for reading/writing little-endian data using InputStream/OutputStream."
"Functions for reading/writing little-endian data using InputStream/OutputStream.
NOTE: This namespace is intended to be used only from within cljam, and should
not be used outside cljam."
(:refer-clojure :exclude [read-string])
(:require [cljam.io.util.byte-buffer :as bb]
[cljam.util :refer [string->bytes]])
Expand Down

0 comments on commit 8612caa

Please sign in to comment.