removeTrailing7Bits method
Implementation
int removeTrailing7Bits(Int64 n) {
var result = (n & (~(Int64.ONE << 7))).toInt();
return result;
}
int removeTrailing7Bits(Int64 n) {
var result = (n & (~(Int64.ONE << 7))).toInt();
return result;
}