JsonPackagePlatformSpecific

class Object
trait Matchable
class Any

Value members

Concrete methods

def readJsonAs(file: File): ZStream[Any, Throwable, Json]
def readJsonAs(path: Path): ZStream[Any, Throwable, Json]
def readJsonAs(path: String): ZStream[Any, Throwable, Json]
def readJsonAs(url: URL): ZStream[Any, Throwable, Json]
def readJsonLinesAs[A : JsonDecoder](file: File): ZStream[Any, Throwable, A]
def readJsonLinesAs[A : JsonDecoder](path: Path): ZStream[Any, Throwable, A]
def readJsonLinesAs[A : JsonDecoder](path: String): ZStream[Any, Throwable, A]
def readJsonLinesAs[A : JsonDecoder](url: URL): ZStream[Any, Throwable, A]
def writeJsonLines[R](file: File, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
def writeJsonLines[R](path: Path, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
def writeJsonLines[R](path: String, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
def writeJsonLinesAs[R, A : JsonEncoder](file: File, stream: ZStream[R, Throwable, A]): RIO[R, Unit]
def writeJsonLinesAs[R, A : JsonEncoder](path: Path, stream: ZStream[R, Throwable, A]): RIO[R, Unit]
def writeJsonLinesAs[R, A : JsonEncoder](path: String, stream: ZStream[R, Throwable, A]): RIO[R, Unit]