msgpack4z-core icon indicating copy to clipboard operation
msgpack4z-core copied to clipboard

typeclass based functional msgpack serializer/deserializer for Scala. support scala.js and scala-native / msgpack.org[Scala]

Results 3 msgpack4z-core issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates * [org.scala-lang:scala3-library](https://github.com/scala/scala3) * [org.scala-lang:scala3-library_sjs1](https://github.com/scala/scala3) from `3.3.3` to `3.4.2` 📜 [GitHub Release Notes](https://github.com/scala/scala3/releases/tag/3.4.2) - [Version Diff](https://github.com/scala/scala3/compare/3.3.3...3.4.2) - [Version Diff](https://github.com/scala/scala3/compare/release-3.3.3...release-3.4.2) ## Usage ✅ **Please merge!** I'll...

I have two case classes, one being recursive while the other references the recursive case class. ```scala case class InitFunction( id: String, timestamp: Long, tree: Function ) case class Function(...

Hi, if I have the following case class: ```scala case class Foo(a: String, b: Option[Int]) ``` If i read a message pack encoded byte array which is equivalent to the...