Zachary LeFevre
Zachary LeFevre
👍 I have a pre commit hook to disallow committing to master locally. I have to remove my pre commit hooks before running sbt release because commitReleaseVersion does not support...
A CGN operates on a non-symmetric adjacency matrix, and therefore is already over a directed graph. Somebody correct me if I'm wrong.
@skeeto Would you mind reviewing this?
I see. For what it's worth I'm trying to integrate smallrye config with our current projects, which are Scala projects. Converter induction (the ability to form a `Converter` assuming the...
> I'll start by saying you can probably get the effect you want by explicitly specifying the converter to use; use the `@WithConverter` type annotation on your property for this...
I think you're saying I need to implement a Converter for every concrete type: ``` public class FooIntConverter implements Converter { @Override public Foo convert(String value) { Foo foo =...
I've realized fixing this at the Converter level with your suggested interfaces would not fix the issue at hand. A converter takes a single string. There is no way to...