From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001
From:
Date: Mon, 29 Jun 2015 20:16:15 +0000
Subject: Update documentation
---
src/bitflags/lib.rs.html | 1121 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 1121 insertions(+)
create mode 100644 src/bitflags/lib.rs.html
(limited to 'src/bitflags/lib.rs.html')
diff --git a/src/bitflags/lib.rs.html b/src/bitflags/lib.rs.html
new file mode 100644
index 0000000..83312e8
--- /dev/null
+++ b/src/bitflags/lib.rs.html
@@ -0,0 +1,1121 @@
+
+
+
+ 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
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+511
+512
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+#[macro_export]
+macro_rules! bitflags {
+ ($(#[$attr:meta])* flags $BitFlags:ident: $T:ty {
+ $($(#[$Flag_attr:meta])* const $Flag:ident = $value:expr),+
+ }) => {
+ #[derive(Copy, PartialEq, Eq, Clone, PartialOrd, Ord, Hash)]
+ $(#[$attr])*
+ pub struct $BitFlags {
+ bits: $T,
+ }
+
+ $($(#[$Flag_attr])* pub const $Flag: $BitFlags = $BitFlags { bits: $value };)+
+
+ impl ::std::fmt::Debug for $BitFlags {
+ fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
+ let out = format!("{} {{ bits: {:#b} }}",
+ stringify!($BitFlags),
+ self.bits);
+ f.write_str(&out[..])
+ }
+ }
+
+ impl $BitFlags {
+
+ #[inline]
+ pub fn empty() -> $BitFlags {
+ $BitFlags { bits: 0 }
+ }
+
+
+ #[inline]
+ pub fn all() -> $BitFlags {
+ $BitFlags { bits: $($value)|+ }
+ }
+
+
+ #[inline]
+ pub fn bits(&self) -> $T {
+ self.bits
+ }
+
+
+
+ #[inline]
+ pub fn from_bits(bits: $T) -> ::std::option::Option<$BitFlags> {
+ if (bits & !$BitFlags::all().bits()) != 0 {
+ ::std::option::Option::None
+ } else {
+ ::std::option::Option::Some($BitFlags { bits: bits })
+ }
+ }
+
+
+
+ #[inline]
+ pub fn from_bits_truncate(bits: $T) -> $BitFlags {
+ $BitFlags { bits: bits } & $BitFlags::all()
+ }
+
+
+ #[inline]
+ pub fn is_empty(&self) -> bool {
+ *self == $BitFlags::empty()
+ }
+
+
+ #[inline]
+ pub fn is_all(&self) -> bool {
+ *self == $BitFlags::all()
+ }
+
+
+ #[inline]
+ pub fn intersects(&self, other: $BitFlags) -> bool {
+ !(*self & other).is_empty()
+ }
+
+
+ #[inline]
+ pub fn contains(&self, other: $BitFlags) -> bool {
+ (*self & other) == other
+ }
+
+
+ #[inline]
+ pub fn insert(&mut self, other: $BitFlags) {
+ self.bits |= other.bits;
+ }
+
+
+ #[inline]
+ pub fn remove(&mut self, other: $BitFlags) {
+ self.bits &= !other.bits;
+ }
+
+
+ #[inline]
+ pub fn toggle(&mut self, other: $BitFlags) {
+ self.bits ^= other.bits;
+ }
+ }
+
+ impl ::std::ops::BitOr for $BitFlags {
+ type Output = $BitFlags;
+
+
+ #[inline]
+ fn bitor(self, other: $BitFlags) -> $BitFlags {
+ $BitFlags { bits: self.bits | other.bits }
+ }
+ }
+
+ impl ::std::ops::BitXor for $BitFlags {
+ type Output = $BitFlags;
+
+
+ #[inline]
+ fn bitxor(self, other: $BitFlags) -> $BitFlags {
+ $BitFlags { bits: self.bits ^ other.bits }
+ }
+ }
+
+ impl ::std::ops::BitAnd for $BitFlags {
+ type Output = $BitFlags;
+
+
+ #[inline]
+ fn bitand(self, other: $BitFlags) -> $BitFlags {
+ $BitFlags { bits: self.bits & other.bits }
+ }
+ }
+
+ impl ::std::ops::Sub for $BitFlags {
+ type Output = $BitFlags;
+
+
+ #[inline]
+ fn sub(self, other: $BitFlags) -> $BitFlags {
+ $BitFlags { bits: self.bits & !other.bits }
+ }
+ }
+
+ impl ::std::ops::Not for $BitFlags {
+ type Output = $BitFlags;
+
+
+ #[inline]
+ fn not(self) -> $BitFlags {
+ $BitFlags { bits: !self.bits } & $BitFlags::all()
+ }
+ }
+ };
+ ($(#[$attr:meta])* flags $BitFlags:ident: $T:ty {
+ $($(#[$Flag_attr:meta])* const $Flag:ident = $value:expr),+,
+ }) => {
+ bitflags! {
+ $(#[$attr])*
+ flags $BitFlags: $T {
+ $($(#[$Flag_attr])* const $Flag = $value),+
+ }
+ }
+ };
+}
+
+#[cfg(test)]
+#[allow(non_upper_case_globals, dead_code)]
+mod tests {
+ use std::hash::{SipHasher, Hash, Hasher};
+
+ bitflags! {
+ #[doc = "> The first principle is that you must not fool yourself — and"]
+ #[doc = "> you are the easiest person to fool."]
+ #[doc = "> "]
+ #[doc = "> - Richard Feynman"]
+ flags Flags: u32 {
+ const FlagA = 0b00000001,
+ #[doc = "<pcwalton> macros are way better at generating code than trans is"]
+ const FlagB = 0b00000010,
+ const FlagC = 0b00000100,
+ #[doc = "* cmr bed"]
+ #[doc = "* strcat table"]
+ #[doc = "<strcat> wait what?"]
+ const FlagABC = FlagA.bits
+ | FlagB.bits
+ | FlagC.bits,
+ }
+ }
+
+ bitflags! {
+ flags _CfgFlags: u32 {
+ #[cfg(windows)]
+ const _CfgA = 0b01,
+ #[cfg(unix)]
+ const _CfgB = 0b01,
+ }
+ }
+
+ bitflags! {
+ flags AnotherSetOfFlags: i8 {
+ const AnotherFlag = -1_i8,
+ }
+ }
+
+ #[test]
+ fn test_bits(){
+ assert_eq!(Flags::empty().bits(), 0b00000000);
+ assert_eq!(FlagA.bits(), 0b00000001);
+ assert_eq!(FlagABC.bits(), 0b00000111);
+
+ assert_eq!(AnotherSetOfFlags::empty().bits(), 0b00);
+ assert_eq!(AnotherFlag.bits(), !0_i8);
+ }
+
+ #[test]
+ fn test_from_bits() {
+ assert!(Flags::from_bits(0) == Some(Flags::empty()));
+ assert!(Flags::from_bits(0b1) == Some(FlagA));
+ assert!(Flags::from_bits(0b10) == Some(FlagB));
+ assert!(Flags::from_bits(0b11) == Some(FlagA | FlagB));
+ assert!(Flags::from_bits(0b1000) == None);
+
+ assert!(AnotherSetOfFlags::from_bits(!0_i8) == Some(AnotherFlag));
+ }
+
+ #[test]
+ fn test_from_bits_truncate() {
+ assert!(Flags::from_bits_truncate(0) == Flags::empty());
+ assert!(Flags::from_bits_truncate(0b1) == FlagA);
+ assert!(Flags::from_bits_truncate(0b10) == FlagB);
+ assert!(Flags::from_bits_truncate(0b11) == (FlagA | FlagB));
+ assert!(Flags::from_bits_truncate(0b1000) == Flags::empty());
+ assert!(Flags::from_bits_truncate(0b1001) == FlagA);
+
+ assert!(AnotherSetOfFlags::from_bits_truncate(0_i8) == AnotherSetOfFlags::empty());
+ }
+
+ #[test]
+ fn test_is_empty(){
+ assert!(Flags::empty().is_empty());
+ assert!(!FlagA.is_empty());
+ assert!(!FlagABC.is_empty());
+
+ assert!(!AnotherFlag.is_empty());
+ }
+
+ #[test]
+ fn test_is_all() {
+ assert!(Flags::all().is_all());
+ assert!(!FlagA.is_all());
+ assert!(FlagABC.is_all());
+
+ assert!(AnotherFlag.is_all());
+ }
+
+ #[test]
+ fn test_two_empties_do_not_intersect() {
+ let e1 = Flags::empty();
+ let e2 = Flags::empty();
+ assert!(!e1.intersects(e2));
+
+ assert!(AnotherFlag.intersects(AnotherFlag));
+ }
+
+ #[test]
+ fn test_empty_does_not_intersect_with_full() {
+ let e1 = Flags::empty();
+ let e2 = FlagABC;
+ assert!(!e1.intersects(e2));
+ }
+
+ #[test]
+ fn test_disjoint_intersects() {
+ let e1 = FlagA;
+ let e2 = FlagB;
+ assert!(!e1.intersects(e2));
+ }
+
+ #[test]
+ fn test_overlapping_intersects() {
+ let e1 = FlagA;
+ let e2 = FlagA | FlagB;
+ assert!(e1.intersects(e2));
+ }
+
+ #[test]
+ fn test_contains() {
+ let e1 = FlagA;
+ let e2 = FlagA | FlagB;
+ assert!(!e1.contains(e2));
+ assert!(e2.contains(e1));
+ assert!(FlagABC.contains(e2));
+
+ assert!(AnotherFlag.contains(AnotherFlag));
+ }
+
+ #[test]
+ fn test_insert(){
+ let mut e1 = FlagA;
+ let e2 = FlagA | FlagB;
+ e1.insert(e2);
+ assert!(e1 == e2);
+
+ let mut e3 = AnotherSetOfFlags::empty();
+ e3.insert(AnotherFlag);
+ assert!(e3 == AnotherFlag);
+ }
+
+ #[test]
+ fn test_remove(){
+ let mut e1 = FlagA | FlagB;
+ let e2 = FlagA | FlagC;
+ e1.remove(e2);
+ assert!(e1 == FlagB);
+
+ let mut e3 = AnotherFlag;
+ e3.remove(AnotherFlag);
+ assert!(e3 == AnotherSetOfFlags::empty());
+ }
+
+ #[test]
+ fn test_operators() {
+ let e1 = FlagA | FlagC;
+ let e2 = FlagB | FlagC;
+ assert!((e1 | e2) == FlagABC);
+ assert!((e1 & e2) == FlagC);
+ assert!((e1 - e2) == FlagA);
+ assert!(!e2 == FlagA);
+ assert!(e1 ^ e2 == FlagA | FlagB);
+ let mut e3 = e1;
+ e3.toggle(e2);
+ assert!(e3 == FlagA | FlagB);
+
+ let mut m4 = AnotherSetOfFlags::empty();
+ m4.toggle(AnotherSetOfFlags::empty());
+ assert!(m4 == AnotherSetOfFlags::empty());
+ }
+
+ #[test]
+ fn test_lt() {
+ let mut a = Flags::empty();
+ let mut b = Flags::empty();
+
+ assert!(!(a < b) && !(b < a));
+ b = FlagB;
+ assert!(a < b);
+ a = FlagC;
+ assert!(!(a < b) && b < a);
+ b = FlagC | FlagB;
+ assert!(a < b);
+ }
+
+ #[test]
+ fn test_ord() {
+ let mut a = Flags::empty();
+ let mut b = Flags::empty();
+
+ assert!(a <= b && a >= b);
+ a = FlagA;
+ assert!(a > b && a >= b);
+ assert!(b < a && b <= a);
+ b = FlagB;
+ assert!(b > a && b >= a);
+ assert!(a < b && a <= b);
+ }
+
+ fn hash<T: Hash>(t: &T) -> u64 {
+ let mut s = SipHasher::new_with_keys(0, 0);
+ t.hash(&mut s);
+ s.finish()
+ }
+
+ #[test]
+ fn test_hash() {
+ let mut x = Flags::empty();
+ let mut y = Flags::empty();
+ assert!(hash(&x) == hash(&y));
+ x = Flags::all();
+ y = FlagABC;
+ assert!(hash(&x) == hash(&y));
+ }
+
+ #[test]
+ fn test_debug() {
+ assert_eq!(format!("{:?}", FlagA | FlagB), "Flags { bits: 0b11 }");
+ assert_eq!(format!("{:?}", FlagABC), "Flags { bits: 0b111 }");
+ }
+}
+
+
+