cconvert
cconvert(T,x)
Convert x
to a value of type T
, typically by calling convert(T,x)
In cases where x
cannot be safely converted to T
, unlike convert
, cconvert
may return an object of a type different from T
, which however is suitable for unsafe_convert
to handle.
Neither convert
nor cconvert
should take a Julia object and turn it into a Ptr
.
Examples
See Also
base, big, bytes2hex, cconvert, complex, convert, dec, hex, hex2bytes, hex2num, oct, oftype, parse, promote, signed, unsafe_convert, unsigned, widen,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.