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
To be able to use this we'd have to implement something similar to FFI::Go::String, except for slices. Since the data is stored in a void * rather than a specific type it should be parameterized, so that we can use specific types. The int part from []int for example.
i am trying to call the below golang func from the documention that you provided on Metacpan
//export Sort
func Sort(vals []int) { sort.Ints(vals) }
any idea how i can attach it like the other functions on the example ?
The text was updated successfully, but these errors were encountered: