static int longToInt_clip(long l) { ret l > Int.MAX_VALUE ? Int.MAX_VALUE : l < Int.MIN_VALUE ? Int.MIN_VALUE : (int) l; }