Barebones Scala bindings for the nippy Clojure serialization format.
See the examples directory.
def write(f: File, xs: Seq[Any]): DataOutputStream
def write(path: String, xs: Seq[Any]): DataOutputStream
def read(f: File): Stream[Any]
def read(path: String): Stream[Any]
import snippy.Snippy
Snippy.write("test.nippy", List(1,2,3))
Snippy.read("test.nippy").foreach { x =>
println(x)
}