-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
Constant scalar types (and compositions thereof) are not currently considered #1
Comments
romm
added a commit
that referenced
this issue
Nov 29, 2021
Previously, `array_filter` would remove the integer value `0` from the array. See #1
romm
added a commit
that referenced
this issue
Nov 29, 2021
Previously, `array_filter` would remove the integer value `0` from the array. See #1
@Ocramius Thanks! The cases you mentioned should work now, can you try again on your side and keep me updated? :) |
Seems to work as expected now, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While experimenting with the library, I noticed that constant scalar types are not currently working:
produces:
The same union done with
string
values behaves incorrectly too, but without crash:The output should be an exception, but
2
is cast tostring
.This is probably just a limitation of how the library operates right now
The text was updated successfully, but these errors were encountered: