/**
* Constructs a function that returns <tt>a >>> b</tt>.
* <tt>a</tt> is a variable, <tt>b</tt> is fixed.
*/
public static IntFunction shiftRightUnsigned(final int b) {
return new IntFunction() {
public final int apply(int a) { return a >>> b; }
};
}