File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,15 @@ function where it is defined.
25
25
26
26
There are three ways to use the inline attribute:
27
27
28
- * ` #[inline] ` suggests performing an inline expansion.
29
- * ` #[inline(always)] ` suggests that an inline expansion should always be
28
+ * ` #[inline] ` * suggests* performing an inline expansion.
29
+ * ` #[inline(always)] ` * suggests* that an inline expansion should always be
30
30
performed.
31
- * ` #[inline(never)] ` suggests that an inline expansion should never be
31
+ * ` #[inline(never)] ` * suggests* that an inline expansion should never be
32
32
performed.
33
33
34
+ > *** Note*** : ` #[inline] ` in every form is a hint, with no * requirements*
35
+ > on the language to place a copy of the attributed function in the caller.
36
+
34
37
### The ` cold ` attribute
35
38
36
39
The * ` cold ` [ attribute] * suggests that the attributed function is unlikely to
You can’t perform that action at this time.
0 commit comments