Android Int Range Check inRange10(int val, int from, int to)

Here you can find the source of inRange10(int val, int from, int to)

Description

in Range

Declaration


public static boolean inRange10(int val, int from, int to) 

Method Source Code

//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*/
}

Related

  1. inRange11(int val, int from, int to)
  2. isBetween(int number, int first, int second)