We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ffc9958 + bfd7f27 commit f23a1f4Copy full SHA for f23a1f4
src/types/literals.md
@@ -30,14 +30,11 @@ fn main() {
30
There are some concepts used in the previous code that haven't been explained
31
yet, here's a brief explanation for the impatient readers:
32
33
-* `fun(&foo)` is used to pass an argument to a function *by reference*, rather
34
- than by value (`fun(foo)`). For more details see [borrowing][borrow].
35
* `std::mem::size_of_val` is a function, but called with its *full path*. Code
36
can be split in logical units called *modules*. In this case, the
37
`size_of_val` function is defined in the `mem` module, and the `mem` module
38
is defined in the `std` *crate*. For more details, see
39
[modules][mod] and [crates][crate].
40
41
-[borrow]: ../scope/borrow.md
42
[mod]: ../mod.md
43
[crate]: ../crates.md
0 commit comments