Here you can find the source of inRange10(int val, int from, int to)
public static boolean inRange10(int val, int from, int to)
//package com.java2s; public class Main { public static boolean inRange10(int val, int from, int to) { return val >= from && val < to; }/* w w w. j a v a 2s. c om*/ }