| 37 | } |
| 38 | |
| 39 | static void NativeArrayIcall(Coral::Array<float> InValues) |
| 40 | { |
| 41 | std::cout << "NativeArrayIcall" << std::endl; |
| 42 | for (auto value : InValues) |
| 43 | { |
| 44 | std::cout << value << std::endl; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | static Coral::Array<float> ArrayReturnIcall() |
| 49 | { |