Piotr Krzemiński
Piotr Krzemiński
Similar to what was done in #190 for transformers, provide analogous mechanism for transformers.
As we now support Java beans, it might be useful to support automatic transformations between: - scala `Option` and java `Optional` - scala collections and java collections - scala maps...
Sometimes, when patching a case class, new value must be combined from existing value and provided one from patch. Thus, we need some way of expressing the custom logic in...
Following this comment, https://github.com/scalalandio/chimney/issues/69#issuecomment-456360446 current implementation of patchers macro doesn't look for loca implicit instances. It neither call itself recursively in order to support following example: ```scala case class Bar(a:...
There's a limitation (https://scalalandio.github.io/chimney/#Limitations) that you can't provide values for missing fields when writing to Java bean. The task is to find out whether we can make `.withFieldConst`, `.withFieldComputed` and...
Very often just after or before validation, w would want to bring our data types to some normal form. For example, when we are requesting user for name, we usually...