Hi, I'm trying to create arrays from an existing array but I'm not sure how exactly to do it. I tried using the ArrayBuilder class, but I keep getting compiler errors when trying to instantiate one...
So I have a couple questions then: 1. How would I instantiate and use an ArrayBuilder class? 2. Would I build it the same as the C++ way? I.e. builder.get().Append() and then builder.get().Finish(new_array)? 3. How can I access the underlying data of an Array? I keep getting an IndexError when trying array.get().data()[i] I'm kind of new to Cython too, sorry if this seems dumb. Thanks, Suhail