C# Class clojure.lang.Numbers.LongBitOps

Inheritance: BitOps
显示文件 Open project: arohner/clojure-contrib

Public Methods

Method Description
and ( object x, object y ) : object
andNot ( object x, object y ) : object
bitOpsWith ( BigIntegerBitOps x ) : BitOps
bitOpsWith ( IntegerBitOps x ) : BitOps
bitOpsWith ( LongBitOps x ) : BitOps
clearBit ( object x, int n ) : object
combine ( BitOps y ) : BitOps
flipBit ( object x, int n ) : object
not ( object x ) : object
or ( object x, object y ) : object
setBit ( object x, int n ) : object
shiftLeft ( object x, int n ) : object
shiftRight ( object x, int n ) : object
testBit ( object x, int n ) : bool
xor ( object x, object y ) : object

Method Details

and() public method

public and ( object x, object y ) : object
x object
y object
return object

andNot() public method

public andNot ( object x, object y ) : object
x object
y object
return object

bitOpsWith() public method

public bitOpsWith ( BigIntegerBitOps x ) : BitOps
x BigIntegerBitOps
return BitOps

bitOpsWith() public method

public bitOpsWith ( IntegerBitOps x ) : BitOps
x IntegerBitOps
return BitOps

bitOpsWith() public method

public bitOpsWith ( LongBitOps x ) : BitOps
x LongBitOps
return BitOps

clearBit() public method

public clearBit ( object x, int n ) : object
x object
n int
return object

combine() public method

public combine ( BitOps y ) : BitOps
y BitOps
return BitOps

flipBit() public method

public flipBit ( object x, int n ) : object
x object
n int
return object

not() public method

public not ( object x ) : object
x object
return object

or() public method

public or ( object x, object y ) : object
x object
y object
return object

setBit() public method

public setBit ( object x, int n ) : object
x object
n int
return object

shiftLeft() public method

public shiftLeft ( object x, int n ) : object
x object
n int
return object

shiftRight() public method

public shiftRight ( object x, int n ) : object
x object
n int
return object

testBit() public method

public testBit ( object x, int n ) : bool
x object
n int
return bool

xor() public method

public xor ( object x, object y ) : object
x object
y object
return object