// InPlaceLshift returns the result of left shifting n by obj. This is done in // place if supported by n. The equivalent Python is "n <<= obj". // // Return value: New Reference. func (n *NumberProtocol) InPlaceLshift(obj *Base) (*Base, error) { ret := C.PyNumber_InPlaceLshift(cnp(n), obj.c()) return obj2ObjErr(ret) }
// InPlaceLshift returns the result of left shifting n by obj. This is done in // place if supported by n. The equivalent Python is "n <<= obj". // // Return value: New Reference. func (n *NumberProtocol) InPlaceLshift(obj Object) (Object, error) { ret := C.PyNumber_InPlaceLshift(cnp(n), c(obj)) return obj2ObjErr(ret) }