1 | // Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team |
---|
2 | // |
---|
3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this |
---|
4 | // software and associated documentation files (the "Software"), to deal in the Software |
---|
5 | // without restriction, including without limitation the rights to use, copy, modify, merge, |
---|
6 | // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
---|
7 | // to whom the Software is furnished to do so, subject to the following conditions: |
---|
8 | // |
---|
9 | // The above copyright notice and this permission notice shall be included in all copies or |
---|
10 | // substantial portions of the Software. |
---|
11 | // |
---|
12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
---|
13 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
---|
14 | // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
---|
15 | // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
---|
16 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
17 | // DEALINGS IN THE SOFTWARE. |
---|
18 | |
---|
19 | using System; |
---|
20 | using System.Globalization; |
---|
21 | |
---|
22 | namespace ICSharpCode.NRefactory.Utils |
---|
23 | { |
---|
24 | /// <summary> |
---|
25 | /// Holds 16 boolean values. |
---|
26 | /// </summary> |
---|
27 | [Serializable] |
---|
28 | [CLSCompliant(false)] |
---|
29 | public struct BitVector16 : IEquatable<BitVector16> |
---|
30 | { |
---|
31 | ushort data; |
---|
32 | |
---|
33 | public bool this[ushort mask] { |
---|
34 | get { return (data & mask) != 0; } |
---|
35 | set { |
---|
36 | if (value) |
---|
37 | data |= mask; |
---|
38 | else |
---|
39 | data &= unchecked((ushort)~mask); |
---|
40 | } |
---|
41 | } |
---|
42 | |
---|
43 | public ushort Data { |
---|
44 | get { return data; } |
---|
45 | set { data = value; } |
---|
46 | } |
---|
47 | |
---|
48 | #region Equals and GetHashCode implementation |
---|
49 | public override bool Equals(object obj) |
---|
50 | { |
---|
51 | if (obj is BitVector16) |
---|
52 | return Equals((BitVector16)obj); // use Equals method below |
---|
53 | else |
---|
54 | return false; |
---|
55 | } |
---|
56 | |
---|
57 | public bool Equals(BitVector16 other) |
---|
58 | { |
---|
59 | return this.data == other.data; |
---|
60 | } |
---|
61 | |
---|
62 | public override int GetHashCode() |
---|
63 | { |
---|
64 | return data; |
---|
65 | } |
---|
66 | |
---|
67 | public static bool operator ==(BitVector16 left, BitVector16 right) |
---|
68 | { |
---|
69 | return left.data == right.data; |
---|
70 | } |
---|
71 | |
---|
72 | public static bool operator !=(BitVector16 left, BitVector16 right) |
---|
73 | { |
---|
74 | return left.data != right.data; |
---|
75 | } |
---|
76 | #endregion |
---|
77 | |
---|
78 | public override string ToString() |
---|
79 | { |
---|
80 | return data.ToString("x4", CultureInfo.InvariantCulture); |
---|
81 | } |
---|
82 | } |
---|
83 | } |
---|