Re: [julia-users] Int or Int64

2016-04-13 Thread Mauro
Also, note that floats work the same on both 32 and 64 bit machines (and both default to making Float64). Concerning ints: use Int64 if you need them for your code to be correct, otherwise use Int. (Maybe best to just use Int64 to be on the save side?) This has been discussed on this list

[julia-users] Int or Int64

2016-04-13 Thread vincent leclere
Hi all, quick question: I am building a package and has been defining types with Int64 or Float64 properties. Is there any reason why I should be using Int and Float instead ? (Does Int64 work on 32bits processors ?) Will it be at the price of efficiency loss ? Thanks