| 118 | } |
| 119 | |
| 120 | int splinter_datatable_get_num_variables(splinter_obj_ptr datatable_ptr) |
| 121 | { |
| 122 | auto dataTable = get_datatable(datatable_ptr); |
| 123 | if (dataTable != nullptr) |
| 124 | { |
| 125 | return dataTable->getNumVariables(); |
| 126 | } |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | |
| 132 | int splinter_datatable_get_num_samples(splinter_obj_ptr datatable_ptr) |
nothing calls this directly
no test coverage detected