Skip to content

Barebones Scala bindings for the nippy serialization format

Notifications You must be signed in to change notification settings

andrewberls/snippy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Snippy

Barebones Scala bindings for the nippy Clojure serialization format.

Examples

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)
}

About

Barebones Scala bindings for the nippy serialization format

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages