| 1868 | } |
| 1869 | |
| 1870 | bool pn_data_is_array_described(pn_data_t *data) |
| 1871 | { |
| 1872 | pni_node_t *node = pni_data_current(data); |
| 1873 | if (node && node->atom.type == PN_ARRAY) { |
| 1874 | return node->described; |
| 1875 | } else { |
| 1876 | return false; |
| 1877 | } |
| 1878 | } |
| 1879 | |
| 1880 | pn_type_t pn_data_get_array_type(pn_data_t *data) |
| 1881 | { |
no test coverage detected