isbits
isbits(T)
Return true
if T
is a "plain data" type, meaning it is immutable and
contains no references to other values. Typical examples are numeric types such
as UInt8
, Float64
, and Complex{Float64}
.
julia> isbits(Complex{Float64})
true
julia> isbits(Complex)
false
Examples
See Also
bitpack, bitunpack, bswap, flipbits!, htol, hton, isbits, ltoh, ntoh, rol, rol!, ror, ror!, signbit,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.