-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement protocols #279
Comments
I think this would be valuable as I've tried using a couple libraries in bb scripts and found the lack of protocol prevented their usage. https://github.com/clj-commons/camel-snake-kebab was one I tried |
Three more namespaces/libraries that would be great to have if defprotocol is available:
|
Another library with defprotocol: https://github.com/clojure/tools.namespace |
Made some progress in the defprotocol branches of babashka and sci.
This class isn't supported by GraalVM afaik. test.check:
After solving that problem, I hit |
@borkdude Confirmed all the same behaviors in the above libraries with 0.1.1. Thanks! To get closer to test.check working, I could add the |
Sure, go ahead. |
Work in progress in the
defprotocol
branch.Todo:
instance?
should work on protocol checks:(instance? clojure.spec.alpha.Spec x)
The text was updated successfully, but these errors were encountered: