Replies: 1 comment 1 reply
-
Hello, @amricko0b Option 1
Option 2
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Greetings!
I've got a function this little function (implementation omitted, cause I think it doesn't matter)
When I try to compile, for example,
doSomething[Int]
ordoSomething[Map[String, Int]]
- compilation fails due to lack of implicit forSchema[Int]
orSchema[Map[String, Int]]
respectively.The only workaround I see for now is to derive all instances manually, but I suppose the library already has them somewhere, due to support out-of-the-box.
Is there a way to somehow import instances for scala types (for example, I need instance for
Map
) rather then derive them?Thanks for attention!
Beta Was this translation helpful? Give feedback.
All reactions