export function rshift(l: Term<any>, r: Term<any>): Op2<any> {
    return op2(">>", l, r, undefined);
}