/*--------------------------------------------------------------------------*/ int isNamedEmptyMatrix(void *_pvCtx, const char *_pstName) { if (checkNamedVarType(_pvCtx, _pstName, sci_matrix)) { return checkNamedVarDimension(_pvCtx, _pstName, 0, 0); } return 0; }
/*--------------------------------------------------------------------------*/ int isNamedPolyType(void* _pvCtx, const char* _pstName) { return checkNamedVarType(_pvCtx, _pstName, sci_poly); }
/*--------------------------------------------------------------------------*/ int isNamedBooleanSparseType(void* _pvCtx, const char* _pstName) { return checkNamedVarType(_pvCtx, _pstName, sci_boolean_sparse); }
/*--------------------------------------------------------------------------*/ int isNamedStringType(void* _pvCtx, const char* _pstName) { return checkNamedVarType(_pvCtx, _pstName, sci_strings); }
/*--------------------------------------------------------------------------*/ int isNamedDoubleType(void* _pvCtx, const char* _pstName) { return checkNamedVarType(_pvCtx, _pstName, sci_matrix); }