-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translating appendix-02 in French. #223
base: french-release
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proofreading appendix-02
|
||
| Opérateur | Exemple | Explication | Surchargeable ? | | ||
|-----------|---------|-------------|-----------------| | ||
| `!` | `ident!(...)`, `ident!{...}`, `ident![...]` | Identificateur de macro | | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `!` | `ident!(...)`, `ident!{...}`, `ident![...]` | Identificateur de macro | | | |
| `!` | `ident!(...)`, `ident!{...}`, `ident![...]` | Appel de macro | | |
| `..` | `..`, `expr..`, `..expr`, `expr..expr` | Littéral d'intervalle d'exclusion | | | ||
| `..=` | `..=expr`, `expr..=expr` | Littéral d'intervalle d'inclusion | | | ||
| `..` | `..expr` | Syntaxe de mise à jour de litéraux de structure | | | ||
| `..` | `variant(x, ..)`, `struct_type { x, .. }` | Motif “ainsi que la suite” | | | ||
| `...` | `expr...expr` | Dans un motif : motif d'intervalle inclusif | | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `..` | `..`, `expr..`, `..expr`, `expr..expr` | Littéral d'intervalle d'exclusion | | | |
| `..=` | `..=expr`, `expr..=expr` | Littéral d'intervalle d'inclusion | | | |
| `..` | `..expr` | Syntaxe de mise à jour de litéraux de structure | | | |
| `..` | `variant(x, ..)`, `struct_type { x, .. }` | Motif “ainsi que la suite” | | | |
| `...` | `expr...expr` | Dans un motif : motif d'intervalle inclusif | | | |
| `..` | `..`, `expr..`, `..expr`, `expr..expr` | Littéral d'intervalle semi-ouvert à droite | | | |
| `..=` | `..=expr`, `expr..=expr` | Littéral d'intervalle fermé | | | |
| `..` | `..expr` | Syntaxe de mise à jour de littéral de structure | | | |
| `..` | `variant(x, ..)`, `struct_type { x, .. }` | Motif “et tout le reste” | | | |
| `...` | `expr...expr` | (Déprécié, utilisez `..=` à la place) Dans un motif : motif d'intervalle fermé | | |
L'intervalle [a, b[ est dit semi-ouvert à droite et l'intervalle [a, b] est dit fermé.
Le texte de dépréciation de ...
provient d'un commit ultérieur de rust-lang/book.
Co-authored-by: Joël J. Présent <[email protected]>
No description provided.