Java Unsigned Long Create toUnsignedLong(int x)

Here you can find the source of toUnsignedLong(int x)

Description

to Unsigned Long

License

Open Source License

Declaration

static long toUnsignedLong(int x) 

Method Source Code

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

public class Main {
    static long toUnsignedLong(int x) {
        return ((long) x) & 0xffffffffL;
    }//from  ww  w. j  av a  2 s  .co  m
}

Related

  1. toUnsignedLong(int intValue)
  2. toUnsignedLong(int number)
  3. toUnsignedLong(int x)
  4. toUnsignedLong(int x)