T - the type of element (e.g., a bitmap class)public interface LogicalElement<T>
| Modifier and Type | Method and Description |
|---|---|
T |
and(T le)
Compute the bitwise logical and
|
T |
andNot(T le)
Compute the bitwise logical and not
|
T |
compose(T le)
Compute the composition
|
void |
not()
Compute the bitwise logical not (in place)
|
T |
or(T le)
Compute the bitwise logical or
|
int |
sizeInBits()
How many logical bits does this element represent?
|
int |
sizeInBytes()
Should report the storage requirement
|
T |
xor(T le)
Compute the bitwise logical Xor
|
T and(T le)
le - elementT andNot(T le)
le - elementvoid not()
T or(T le)
le - another elementint sizeInBits()
int sizeInBytes()
T xor(T le)
le - elementCopyright © 2015. All Rights Reserved.