/ Return the Value's Array value. */ /
| 1569 | /* Return the Value's Array value. */ |
| 1570 | /***********************************************************************/ |
| 1571 | PJAR JVALUE::GetArray(void) |
| 1572 | { |
| 1573 | if (DataType == TYPE_JSON && Jsp->GetType() == TYPE_JAR) |
| 1574 | return (PJAR)Jsp; |
| 1575 | |
| 1576 | return NULL; |
| 1577 | } // end of GetArray |
| 1578 | |
| 1579 | /***********************************************************************/ |
| 1580 | /* Return the Value's as a Value class. */ |
no test coverage detected