Still getting used to the use of OptionSetType
in Swift.
In good ol' C, if I had something like
typedef enum {
CHAR_PROP_BROADCAST =0x01,
CHAR_PROP_READ =0x02,
CHAR_PROP_WRITE_WITHOUT_RESP =0x04,
CHAR_PROP_WRITE =0x08,
CHAR_PROP_NOTIFY =0x10,
CHAR_PROP_INDICATE =0x20,
CHAR_PROP_SIGNED_WRITE =0x40,
CHAR_PROP_EXT =0x80
} CharacteristicProperty;
I could test a set of flags with something simple like:
if ((propertiesMask & (CHAR_PROP_NOTIFY | CHAR_PROP_INDICATE)) != 0) ...
The Swift alternative might look like
let properties:CBCharacteristicProperties = [.Write, .Read, .Indicate]
!properties.intersect([.Indicate, .Notify]).isEmpty
Is there a more idiomatic way to do this test? Not a fan of the ! out front. But otherwise, seems straightforward enough, except I'm really interested in when there IS an intersection. This led me to want to add my own.
extension OptionSetType {
func hasIntersection(other:Self) -> Bool {
return !self.intersect(other).isEmpty
}
}
Which then allows me to write
properties.hasIntersection([.Indicate, .Notify])
Is there a better/more idiomatic way to do this? Did I roll my own and miss something?
There's this method from the protocol
SetAlgebraType
whichOptionSetType
implements:So you could shorten your test to:
or
You can also compare the raw values with bitwise operators, just as you would do in C:
Full example code (in a playground):
result: