November 2016
Intermediate to advanced
697 pages
14h 44m
English
As it is a numerical programming language, fast computations with numbers are central to everything we do in Julia. In the previous chapters, we discussed how the Julia compiler and runtime perform across a wide range of code. In this chapter, we will take a detailed look at how these core constructs are designed and implemented in Julia.
In this chapter, we will cover the following topics:
The basic number types in Julia are designed to closely follow the hardware on which it runs. The default numeric types are as close to the metal as possible—a design decision that contributes to Julia's C-like speed.
Integers in Julia are stored as ...
Read now
Unlock full access