You already know from chapter 2 how to process vectors by using loops, the map function, and comprehensions. This chapter introduces another way that is commonly used in practice: broadcasting.
Section 5.2 explains a more advanced topic related to rules of subtyping for parametric types that often raises questions from people learning Julia. This issue is closely linked with collections because, as you will learn in this chapter, types of the most common collections like arrays or dictionaries are parametric. For this reason, you need to learn this topic if you want to know how to correctly write method signatures that allow for collections as their arguments.