Skip to content

Latest commit

 

History

History

io

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Casterlabs Commons/IO

This package has helpers for consuming and processing streams.

Examples

TODO :^)

Adding to your project

Replace VERSION_OR_HASH with the latest version or commit in this repo and make sure to add the Repository to your build system.

Maven
  <dependency>
      <groupId>co.casterlabs.commons</groupId>
      <artifactId>IO</artifactId>
      <version>VERSION_OR_HASH</version>
  </dependency>
Gradle
  dependencies {
      implementation 'co.casterlabs.commons:IO:VERSION_OR_HASH'
  }
SBT
libraryDependencies += "co.casterlabs.commons" % "IO" % "VERSION_OR_HASH"
Leiningen
:dependencies [[co.casterlabs.commons/IO "VERSION_OR_HASH"]]