| 203 | } |
| 204 | |
| 205 | inline int integer_width( int n ){ |
| 206 | return n < 0 ? ( (int) ( ::log10( -n+0.5) + 2 ) ) : ( (int) ( ::log10( n+0.5) + 1 ) ) ; |
| 207 | } |
| 208 | |
| 209 | template <> |
| 210 | inline const char* coerce_to_string<CPLXSXP>(Rcomplex x){ |
no outgoing calls
no test coverage detected