scala-commons
scala-commons copied to clipboard
AVSystem commons library for Scala
Assuming a hierarchy like this: ```scala case class InnerRecord( int: Int, str: String, ) object InnerRecord extends MongoDataCompanion[InnerRecord] case class RecordTestEntity( id: String, innerList: List[InnerRecord] ) extends MongoEntity[String] object RecordTestEntity...
It happened that parsing of `BigInt` and `BigDecimal` in latest versions of JVM has `O(n^2)` complexity where `n` is the number of significant digits. It means that a JSON body...
Macro-based compile time reflection should be always confined to the same file where inspected classes are defined. This avoids problems with incremental compilation and possible duplication of macro generated code.
Scala 3?
`Task(sth).map(throw Error())` doesn't lead to failing the Task, because `throw Error()` has `Nothing` type, so it has also lambda type. If such a check is possible, it should be included...
Add base companions for classes representing HOCON config
## About this PR 📦 Updates [org.springframework:spring-context](https://github.com/spring-projects/spring-framework) from `5.3.37` to `6.1.10` ⚠ 📜 [GitHub Release Notes](https://github.com/spring-projects/spring-framework/releases/tag/v6.1.10) - [Version Diff](https://github.com/spring-projects/spring-framework/compare/v5.3.37...v6.1.10) ## Usage ✅ **Please merge!** I'll automatically update this PR to...