You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, this failed with the following error: panic: interface conversion: interface {} is []bool, not *[]bool
Is passing a slice of slices generally not supported or do I have to do it in a different way (like passing a slice of pointers to slices)? If this is supported, I would suggest to maybe add an example for this because as far as I can see, there is none yet. If I'm just doing it wrong, a hint in the right direction would be greatly appreciated :)
The text was updated successfully, but these errors were encountered:
I'm assuming this is now fixed by #350 unless someone tells me otherwise. And if someone could write a test to confirm, that would be most appreciated (@EvanOman ?)
I wanted to pass a slice of slices of boolean values ([][]bool). I would assume that this could simply be done like this:
In Python I then simply called the function:
However, this failed with the following error:
panic: interface conversion: interface {} is []bool, not *[]bool
Is passing a slice of slices generally not supported or do I have to do it in a different way (like passing a slice of pointers to slices)? If this is supported, I would suggest to maybe add an example for this because as far as I can see, there is none yet. If I'm just doing it wrong, a hint in the right direction would be greatly appreciated :)
The text was updated successfully, but these errors were encountered: