(var)
| 100 | |
| 101 | |
| 102 | def isarrayofstrings(var): # obsolete? |
| 103 | # leaving out '*' for now so that `character*(*) a(m)` and `character |
| 104 | # a(m,*)` are treated differently. Luckily `character**` is illegal. |
| 105 | return isstringarray(var) and var['dimension'][-1] == '(*)' |
| 106 | |
| 107 | |
| 108 | def isarray(var): |
no test coverage detected
searching dependent graphs…