On Saturday, December 27, 2014 5:29:27 PM UTC+10, Kenan KARAGÜL wrote: > > Hi everybody, > > I am working about integer arrays and I need Int64 NaN. >
A NaN is a floating point value using an otherwise illegal set of bits, there is no set of bitse of an int64 that does not represent a valid integer. Depending on your use-case perhaps you could use a Nullable http://docs.julialang.org/en/latest/manual/types/?highlight=nullable#nullable-types-representing-missing-values. Cheers Lex > Have any solutions for this problem? > Thanks in advance. > Kenan >
