Alex Engelberg

Results 24 comments of Alex Engelberg

As I've been working with Autobahn and clj-wamp more, I've run into this issue more commonly, so I investigated the issue more thoroughly. From the Autobahn source code: ``` Session.prototype.call...

For that matter, I am also uncertain as to whether clj-wamp supports the ["options" dict](https://github.com/tavendo/WAMP/blob/master/spec/basic.md#call-1) presumably inside RFC CALL arrays.

Looks like the reason behind all of this is that clj-wamp uses WAMP v1 whereas it's already on version 2. Sorry for the confusion.

Thanks for taking a stab at this. I notice right off the bat that your "!=" statements should actually stay "==". Those statements are intended to state "we're constraining stuff...

In my toy examples at the REPL, nafc seemed to work as expected. If the nafc docstring is true, in this case it would never activate because "fake-remaining-strings" is always...

I'm surprised that strings was not ground in those cases. Wasn't I setting the value of strings when binding "in" to (seq "a")? I was setting it after the constraint...

At [Amperity](amperity.com) we: * use the Aleph HTTP server for our externally-facing microservices, wrapped with [Yada](https://github.com/juxt/yada) to give us routing and some more HTTP features for free. * largely dealing...

Are there any known workarounds that would let me effectively achieve this behavior with the current Jackson API? For example, plug in some kind of faux "parser" that throws away...

I agree this would be a great change. :+1:

Certain (if not all) stateful navigators have equivalents in terms of `subselect`, though not necessarily as efficient. ``` ;; With hypothetical take-nav [ALL :a (take-nav 3)] ;; Doable with subselect...