Justin Donaldson
Justin Donaldson
If there's structure like bookId/chapterId/etc., I'm not sure why you wouldn't want to capture those in TestApi. But, if you want to handle "wildcard" queries like this, just capture the...
Thanks for this, and sorry for the delay. I'm looking it over and will integrate it with the v2 change.
I notice that Java doesn't do well when certain functions do not return values. I have the callback for "then" specified as f : T->A. Of course, A can become...
still tracking this, although I don't think that there's a good solution here.
The "then()" method expects a return value, which becomes the type parameter for the Promise instance. If there is no parameter, it uses "Void", which isn't allowed as an instance...
Yeah, I've been meaning to add this. I'll look into it.
FWIW I had this same need in my own framework. I attached a handle to the generator for each method field, and it autowired itself with upstream function arguments the...
Yeah, it's a chain. It worked by precomputing the dag from the field names (as you have done). However, It would also augment each decorated method with its own generator...
The application is basically any kind of composable DAG structure for ML pipelines. I've used them to sketch out complex DS transformations, use them to generate notebooks, investigate ML model...
Also, I'm sure this is named after Hamilton Paths, which is a node traversal in a graph. However it's not specifically DAG related, is it? I might be missing a...