John Leacox
John Leacox
It looks like you are trying to do an instanceof match. There is a built in typeOf matcher in Motif that should work for this scenario. I built out some...
Your Case2 code is really close. You can use the Tuple2 match pattern to extract the values directly. Try this: ``` Java match(ms).when(typeOf(EmptyMap_.class)) .get(x -> new InsertAssoc_(Tuple2.of(k, v), new EmptyMap_()))...
This library is heavily dependent on the Lambda functionality in Java 8, so it's unlikely it will ever be compatible with Java 6 or 7.
The internals and many of the APIs of motif depend on Java 8 classes.
This sounds like an interesting idea. Currently `typeOf()` is still marked with `@ExperimentalStdlibApi` even on version 1.4.10 so that concerns me. The experimental issue aside, I'm curious how this would...
I was looking at this again and couldn't remember what the problem is, but I think the problem is that our bom is inheriting the dependency management section from the...
I'd also liked to see this feature so that a message can be delayed/deferred at publish time rather then need to consume and then nak. We have a use case...
Since Dagger 2 has no dynamism, I'm not even sure this will be possible. I will spend some time looking into possible way to do this. I am also open...
Since Dagger 2 removes the ability to use `ObjectGraph.get()`, implementing this won't be straight forward. Based on what I've read about Dagger 2 the way this would have to work...
I've got a branch where I have done some work for Jersey 2.x but it's pretty hacky so far. Jersey 2.x doesn't provide a great mechanism for plugging in an...