-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
creation of BitArray using comprehension #3166
Comments
On another note, can we also make a |
This seem to call for some more general mechanism. The same thing would be handy for using array literals that contain null to construct NullableArray objects. |
Is there any way we can do something like C++ template specializations, and make the in-memory representation of a |
I think there's two separate issues here:
Both are interesting, although the second point seems to cause more trouble for beginners (who don't seem to think about the first point) since they keep failing to understand why comprehensions don't produce DataArray objects. |
This should be do-able with the new generalized comprehension syntax, but it looks like we need to add a constructor method:
|
Since we can use generators now, I'm removing the breaking label and accepting this. |
in particular, can now use generators. Fixes #3166
in particular, can now use generators. Fixes #3166
in particular, can now use generators. Fixes #3166
in particular, can now use generators. Fixes #3166
in particular, can now use generators. Fixes JuliaLang#3166
Now is necessary create a Bool Array using list comprehension an after that make the conversion to BitArray:
The text was updated successfully, but these errors were encountered: