[go: up one dir, main page]

Menu

[r1]: / idl_lib / typestring.pro  Maximize  Restore  History

Download this file

7 lines (7 with data), 270 Bytes

1
2
3
4
5
6
7
;converts an idl type code to a string:
function typestring, code
types=["undef", "byte", "integer", "long", "float", "double", $
"complex", "string", "struct", "complex double", $
"pointer", "object", "unsigned int", "unsigned long"]
return, types[code]
end