Java Integer Hash intHash(int i)

Here you can find the source of intHash(int i)

Description

int Hash

License

Open Source License

Declaration

public static int intHash(int i) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static int intHash(int i) {
        return (i << 16) | (i >>> 16);
    }//from w  ww  .j a v a 2s.c  o m
}

Related

  1. intHash(final long a)
  2. intHash(int input)
  3. intHash(int key)
  4. intHash(int number, int max)
  5. intHash(long a)