mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-04-03 01:56:12 +02:00
Merge pull request #159 from fbornhofen/speaker-notes
Speaker notes: cosmetic fixes for compund-types.md, borrowing.md
This commit is contained in:
commit
bd1c8edc3c
src
@ -31,20 +31,20 @@ Key points:
|
||||
|
||||
Arrays:
|
||||
|
||||
*Arrays have elements of the same type, `T`, and length, `N`, which is a compile-time constant.
|
||||
* Arrays have elements of the same type, `T`, and length, `N`, which is a compile-time constant.
|
||||
|
||||
*We can use literals to assign values to arrays.
|
||||
* We can use literals to assign values to arrays.
|
||||
|
||||
*In the main function, the print statement asks for the debug implementation with the `?` format parameter: `{a}` gives the default output, `{a:?}` gives the debug output.
|
||||
* In the main function, the print statement asks for the debug implementation with the `?` format parameter: `{a}` gives the default output, `{a:?}` gives the debug output.
|
||||
|
||||
*Adding `#`, eg `{a:#?}`, invokes a "pretty printing" format, which can be easier to read.
|
||||
* Adding `#`, eg `{a:#?}`, invokes a "pretty printing" format, which can be easier to read.
|
||||
|
||||
Tuples:
|
||||
|
||||
*Like arrays, tuples have a fixed length.
|
||||
* Like arrays, tuples have a fixed length.
|
||||
|
||||
*Tuples group together values of different types into a compound type.
|
||||
* Tuples group together values of different types into a compound type.
|
||||
|
||||
*Fields that can be accessed by the period and the index of the value, e.g. t.0, t.1.
|
||||
* Fields that can be accessed by the period and the index of the value, e.g. `t.0`, `t.1`.
|
||||
|
||||
</details>
|
||||
|
@ -25,7 +25,7 @@ fn main() {
|
||||
<details>
|
||||
|
||||
Notes on stack returns:
|
||||
* Demonstrate that the return from `add` is cheap because the compiler can eliminate the copy operation. Change the above code to print stack addresses and run it on the [Playground](https://play.rust-lang.org/). In the "DEBUG" optimization level, the addresses should change, while the stay the same when changning to the "RELEASE" setting:
|
||||
* Demonstrate that the return from `add` is cheap because the compiler can eliminate the copy operation. Change the above code to print stack addresses and run it on the [Playground]. In the "DEBUG" optimization level, the addresses should change, while the stay the same when changing to the "RELEASE" setting:
|
||||
|
||||
```rust,editable
|
||||
#[derive(Debug)]
|
||||
@ -49,3 +49,5 @@ Notes on stack returns:
|
||||
* In C++, copy elision has to be defined in the language specification because constructors can have side effects. In Rust, this is not an issue at all.
|
||||
|
||||
</details>
|
||||
|
||||
[Playground]: https://play.rust-lang.org/
|
||||
|
Loading…
x
Reference in New Issue
Block a user