1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// So we don't have to document the actual methods on the traits.
#[allow(missing_doc)];
/*!
*
* Traits representing built-in operators, useful for overloading
*
* Implementing these traits allows you to get an effect similar to
* overloading operators.
*
* The values for the right hand side of an operator are automatically
* borrowed, so `a + b` is sugar for `a.add(&b)`.
*
* All of these traits are imported by the prelude, so they are available in
* every Rust program.
*
* # Example
*
* This example creates a `Point` struct that implements `Add` and `Sub`, and then
* demonstrates adding and subtracting two `Point`s.
*
* ```rust
* struct Point {
* x: int,
* y: int
* }
*
* impl Add<Point, Point> for Point {
* fn add(&self, other: &Point) -> Point {
* Point {x: self.x + other.x, y: self.y + other.y}
* }
* }
*
* impl Sub<Point, Point> for Point {
* fn sub(&self, other: &Point) -> Point {
* Point {x: self.x - other.x, y: self.y - other.y}
* }
* }
* fn main() {
* println(format!("{:?}", Point {x: 1, y: 0} + Point {x: 2, y: 3}));
* println(format!("{:?}", Point {x: 1, y: 0} - Point {x: 2, y: 3}));
* }
* ```
*
* See the documentation for each trait for a minimum implementation that prints
* something to the screen.
*
*/
/**
*
* The `Drop` trait is used to run some code when a value goes out of scope. This
* is sometimes called a 'destructor'.
*
* # Example
*
* A trivial implementation of `Drop`. The `drop` method is called when `_x` goes
* out of scope, and therefore `main` prints `Dropping!`.
*
* ```rust
* struct HasDrop;
*
* impl Drop for HasDrop {
* fn drop(&mut self) {
* println("Dropping!");
* }
* }
*
* fn main() {
* let _x = HasDrop;
* }
* ```
*/
#[lang="drop"]
pub trait Drop {
fn drop(&mut self);
}
/**
*
* The `Add` trait is used to specify the functionality of `+`.
*
* # Example
*
* A trivial implementation of `Add`. When `Foo + Foo` happens, it ends up
* calling `add`, and therefore, `main` prints `Adding!`.
*
* ```rust
* struct Foo;
*
* impl Add<Foo, Foo> for Foo {
* fn add(&self, _rhs: &Foo) -> Foo {
* println("Adding!");
* *self
* }
* }
*
* fn main() {
* Foo + Foo;
* }
* ```
*/
#[lang="add"]
pub trait Add<RHS,Result> {
fn add(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Sub` trait is used to specify the functionality of `-`.
*
* # Example
*
* A trivial implementation of `Sub`. When `Foo - Foo` happens, it ends up
* calling `sub`, and therefore, `main` prints `Subtracting!`.
*
* ```rust
* struct Foo;
*
* impl Sub<Foo, Foo> for Foo {
* fn sub(&self, _rhs: &Foo) -> Foo {
* println("Subtracting!");
* *self
* }
* }
*
* fn main() {
* Foo - Foo;
* }
* ```
*/
#[lang="sub"]
pub trait Sub<RHS,Result> {
fn sub(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Mul` trait is used to specify the functionality of `*`.
*
* # Example
*
* A trivial implementation of `Mul`. When `Foo * Foo` happens, it ends up
* calling `mul`, and therefore, `main` prints `Multiplying!`.
*
* ```rust
* struct Foo;
*
* impl Mul<Foo, Foo> for Foo {
* fn mul(&self, _rhs: &Foo) -> Foo {
* println("Multiplying!");
* *self
* }
* }
*
* fn main() {
* Foo * Foo;
* }
* ```
*/
#[lang="mul"]
pub trait Mul<RHS,Result> {
fn mul(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Div` trait is used to specify the functionality of `/`.
*
* # Example
*
* A trivial implementation of `Div`. When `Foo / Foo` happens, it ends up
* calling `div`, and therefore, `main` prints `Dividing!`.
*
* ```
* struct Foo;
*
* impl Div<Foo, Foo> for Foo {
* fn div(&self, _rhs: &Foo) -> Foo {
* println("Dividing!");
* *self
* }
* }
*
* fn main() {
* Foo / Foo;
* }
* ```
*/
#[lang="div"]
pub trait Div<RHS,Result> {
fn div(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Rem` trait is used to specify the functionality of `%`.
*
* # Example
*
* A trivial implementation of `Rem`. When `Foo % Foo` happens, it ends up
* calling `rem`, and therefore, `main` prints `Remainder-ing!`.
*
* ```
* struct Foo;
*
* impl Rem<Foo, Foo> for Foo {
* fn rem(&self, _rhs: &Foo) -> Foo {
* println("Remainder-ing!");
* *self
* }
* }
*
* fn main() {
* Foo % Foo;
* }
* ```
*/
#[lang="rem"]
pub trait Rem<RHS,Result> {
fn rem(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Neg` trait is used to specify the functionality of unary `-`.
*
* # Example
*
* A trivial implementation of `Neg`. When `-Foo` happens, it ends up calling
* `neg`, and therefore, `main` prints `Negating!`.
*
* ```
* struct Foo;
*
* impl Neg<Foo> for Foo {
* fn neg(&self) -> Foo {
* println("Negating!");
* *self
* }
* }
*
* fn main() {
* -Foo;
* }
* ```
*/
#[lang="neg"]
pub trait Neg<Result> {
fn neg(&self) -> Result;
}
/**
*
* The `Not` trait is used to specify the functionality of unary `!`.
*
* # Example
*
* A trivial implementation of `Not`. When `!Foo` happens, it ends up calling
* `not`, and therefore, `main` prints `Not-ing!`.
*
* ```
* struct Foo;
*
* impl Not<Foo> for Foo {
* fn not(&self) -> Foo {
* println("Not-ing!");
* *self
* }
* }
*
* fn main() {
* !Foo;
* }
* ```
*/
#[lang="not"]
pub trait Not<Result> {
fn not(&self) -> Result;
}
/**
*
* The `BitAnd` trait is used to specify the functionality of `&`.
*
* # Example
*
* A trivial implementation of `BitAnd`. When `Foo & Foo` happens, it ends up
* calling `bitand`, and therefore, `main` prints `Bitwise And-ing!`.
*
* ```
* struct Foo;
*
* impl BitAnd<Foo, Foo> for Foo {
* fn bitand(&self, _rhs: &Foo) -> Foo {
* println("Bitwise And-ing!");
* *self
* }
* }
*
* fn main() {
* Foo & Foo;
* }
* ```
*/
#[lang="bitand"]
pub trait BitAnd<RHS,Result> {
fn bitand(&self, rhs: &RHS) -> Result;
}
/**
*
* The `BitOr` trait is used to specify the functionality of `|`.
*
* # Example
*
* A trivial implementation of `BitOr`. When `Foo | Foo` happens, it ends up
* calling `bitor`, and therefore, `main` prints `Bitwise Or-ing!`.
*
* ```
* struct Foo;
*
* impl BitOr<Foo, Foo> for Foo {
* fn bitor(&self, _rhs: &Foo) -> Foo {
* println("Bitwise Or-ing!");
* *self
* }
* }
*
* fn main() {
* Foo | Foo;
* }
* ```
*/
#[lang="bitor"]
pub trait BitOr<RHS,Result> {
fn bitor(&self, rhs: &RHS) -> Result;
}
/**
*
* The `BitXor` trait is used to specify the functionality of `^`.
*
* # Example
*
* A trivial implementation of `BitXor`. When `Foo ^ Foo` happens, it ends up
* calling `bitxor`, and therefore, `main` prints `Bitwise Xor-ing!`.
*
* ```
* struct Foo;
*
* impl BitXor<Foo, Foo> for Foo {
* fn bitxor(&self, _rhs: &Foo) -> Foo {
* println("Bitwise Xor-ing!");
* *self
* }
* }
*
* fn main() {
* Foo ^ Foo;
* }
* ```
*/
#[lang="bitxor"]
pub trait BitXor<RHS,Result> {
fn bitxor(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Shl` trait is used to specify the functionality of `<<`.
*
* # Example
*
* A trivial implementation of `Shl`. When `Foo << Foo` happens, it ends up
* calling `shl`, and therefore, `main` prints `Shifting left!`.
*
* ```
* struct Foo;
*
* impl Shl<Foo, Foo> for Foo {
* fn shl(&self, _rhs: &Foo) -> Foo {
* println("Shifting left!");
* *self
* }
* }
*
* fn main() {
* Foo << Foo;
* }
* ```
*/
#[lang="shl"]
pub trait Shl<RHS,Result> {
fn shl(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Shr` trait is used to specify the functionality of `>>`.
*
* # Example
*
* A trivial implementation of `Shr`. When `Foo >> Foo` happens, it ends up
* calling `shr`, and therefore, `main` prints `Shifting right!`.
*
* ```
* struct Foo;
*
* impl Shr<Foo, Foo> for Foo {
* fn shr(&self, _rhs: &Foo) -> Foo {
* println("Shifting right!");
* *self
* }
* }
*
* fn main() {
* Foo >> Foo;
* }
* ```
*/
#[lang="shr"]
pub trait Shr<RHS,Result> {
fn shr(&self, rhs: &RHS) -> Result;
}
/**
*
* The `Index` trait is used to specify the functionality of indexing operations
* like `arr[idx]`.
*
* # Example
*
* A trivial implementation of `Index`. When `Foo[Foo]` happens, it ends up
* calling `index`, and therefore, `main` prints `Indexing!`.
*
* ```
* struct Foo;
*
* impl Index<Foo, Foo> for Foo {
* fn index(&self, _rhs: &Foo) -> Foo {
* println("Indexing!");
* *self
* }
* }
*
* fn main() {
* Foo[Foo];
* }
* ```
*/
#[lang="index"]
pub trait Index<Index,Result> {
fn index(&self, index: &Index) -> Result;
}
#[cfg(test)]
mod bench {
use extra::test::BenchHarness;
use ops::Drop;
// Overhead of dtors
struct HasDtor {
x: int
}
impl Drop for HasDtor {
fn drop(&mut self) {
}
}
#[bench]
fn alloc_obj_with_dtor(bh: &mut BenchHarness) {
bh.iter(|| {
HasDtor { x : 10 };
})
}
}
|