Skip to content

Remove use of clj-tuple #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ byte-streams> (compare-bytes "abc" "abd")
`byte-streams/conversion-path` returns all the intermediate steps in transforming one type to another, if one exists:

```clojure
;; each element is a conversion tuple of to/from
;; each element is a conversion pair of to/from
byte-streams> (conversion-path java.io.File String)
([java.io.File java.nio.channels.ReadableByteChannel]
[#'byte-streams/ByteSource java.lang.CharSequence]
Expand Down
1 change: 0 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
:password :env/clojars_password
:sign-releases false}]]
:dependencies [[primitive-math "0.1.6"]
[clj-tuple "0.2.2"]
[manifold "0.1.9"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/test.check "1.1.0"]
Expand Down
3 changes: 1 addition & 2 deletions src/byte_streams/graph.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(ns byte-streams.graph
(:refer-clojure :exclude [vector type])
(:refer-clojure :exclude [type])
(:require
[clj-tuple :refer [vector]]
[manifold.stream :as s]
[byte-streams
[utils :refer [defprotocol+ defrecord+ deftype+]]
Expand Down