C# Class clojure.lang.Numbers.LongBitOps

Inheritance: BitOps
Afficher le fichier Open project: arohner/clojure-contrib

Méthodes publiques

Méthode 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 méthode

public and ( object x, object y ) : object
x object
y object
Résultat object

andNot() public méthode

public andNot ( object x, object y ) : object
x object
y object
Résultat object

bitOpsWith() public méthode

public bitOpsWith ( BigIntegerBitOps x ) : BitOps
x BigIntegerBitOps
Résultat BitOps

bitOpsWith() public méthode

public bitOpsWith ( IntegerBitOps x ) : BitOps
x IntegerBitOps
Résultat BitOps

bitOpsWith() public méthode

public bitOpsWith ( LongBitOps x ) : BitOps
x LongBitOps
Résultat BitOps

clearBit() public méthode

public clearBit ( object x, int n ) : object
x object
n int
Résultat object

combine() public méthode

public combine ( BitOps y ) : BitOps
y BitOps
Résultat BitOps

flipBit() public méthode

public flipBit ( object x, int n ) : object
x object
n int
Résultat object

not() public méthode

public not ( object x ) : object
x object
Résultat object

or() public méthode

public or ( object x, object y ) : object
x object
y object
Résultat object

setBit() public méthode

public setBit ( object x, int n ) : object
x object
n int
Résultat object

shiftLeft() public méthode

public shiftLeft ( object x, int n ) : object
x object
n int
Résultat object

shiftRight() public méthode

public shiftRight ( object x, int n ) : object
x object
n int
Résultat object

testBit() public méthode

public testBit ( object x, int n ) : bool
x object
n int
Résultat bool

xor() public méthode

public xor ( object x, object y ) : object
x object
y object
Résultat object