| 13 | Array() {} |
| 14 | |
| 15 | static std::array<int, 3> getInts() { |
| 16 | std::array<int, 3> a {{ 13, 21, 34 }}; |
| 17 | |
| 18 | return(a); |
| 19 | } |
| 20 | |
| 21 | static std::array<int, 3> callWithInts(nbind::cbFunction &callback, std::array<int, 3> a) { |
| 22 | return(callback.call<std::array<int, 3>>(a)); |