operator | method
Implementation
int operator |(dynamic other) {
if (other == null) {
return raw;
}
if (other is int) {
return raw | other;
}
return raw | other.raw;
}
int operator |(dynamic other) {
if (other == null) {
return raw;
}
if (other is int) {
return raw | other;
}
return raw | other.raw;
}