7 Understanding Types Flashcards
Julia as a Second Language
All objects in Julia have a particular ________ ?
Julia as a Second Language
What does a type do?
Julia as a Second Language
What function can be used to indentify if a type is a primitive type?
Julia as a Second Language
What is a primitive type?
Julia as a Second Language
What is a composite type?
Julia as a Second Language
What are composite types made of?
Julia as a Second Language
What is the keyword for creating a composite type?
Julia as a Second Language
What are the objects made from a type called?
Julia as a Second Language
What is it called when you specify a type for specific field?
Julia as a Second Language
What symbol is used to create a type annotation?
Julia as a Second Language
Why should you annotate types in a Struct?
Julia as a Second Language
What two functions are good for exploring a functions’ type hierarchy?
Julia as a Second Language
What does subtype() do?
Julia as a Second Language
What does supertype() do?
Julia as a Second Language
What is the supertype of all types?
Julia as a Second Language
What can you do with a first-class object?
Julia as a Second Language
How can you check programmatically if a type is a subtype of another type?