9. Conversion and promotion Flashcards
Julia as a Second Language
So what does the @edit macro do?
Julia as a Second Language
Why is it important for numbers to have units?
Julia as a Second Language
What does convert() do?
Julia as a Second Language
What is the Type{} object (for example, Type{Int64}?
Julia as a Second Language
What is going on here?
Radians and Angles are being defined at their lowest level. All conversions will start at this point.
Julia as a Second Language
What is happening here?
Struct’s have created Radians and Degrees. From the value of these structs all other units can be created, which is what these constructors are doing.
Julia as a Second Language
What is happening here?
We create structs for Radians and Degrees and constructors, now we need to tell Julia how to add Radians together and Degrees together.
Julia as a Second Language
What is going on here?
Julia as a Second Language
What is happening here?
This says the print function will used the given format when printing a DMS object.
Julia as a Second Language
What is going on here?
Julia as a Second Language
What is happening here?
Julia as a Second Language
What is happening here?
Julia as a Second Language
What is happening here?