Property | Type | Description | |
---|---|---|---|
ExistsInDB | bool |
Method | Description | |
---|---|---|
Add ( int index, bool value ) : void |
|
|
Contains ( int index ) : bool |
|
|
GetCompressedByteArray ( ) : byte[] |
With extra protocol definition, ready for save into DB
|
|
GetUncompressedByteArray ( ) : byte[] |
Working byte[]
|
|
MergeByAndLogic ( List |
Using OR logic: 1|1 = 1|0 = 1; 0|0 = 0 Using AND logic: 1 and 1 = 1; 1 and 0 = 0; 0 and 0 = 0
|
|
MergeByExcludeLogic ( byte array1, byte array2 ) : byte[] |
Using EXCLUDE logic: 1notin1 = 0; 1notin0 = 1; 0notin0 = 0; 0notin1 = 0;
|
|
MergeByOrLogic ( List |
Using OR logic: 1or1 = 1or0 = 1; 0or0 = 0
|
|
MergeByXorLogic ( List |
Using XOR logic: 1xor1 = 0; 0xor0 = 0; 1xor0 = 1
|
|
Resize ( int len ) : void |
|
|
TextSearch_AND_logic ( List |
Returns first added document first (sort by ID asc) Returns last added documents first
|
|
TextSearch_AND_logic ( List |
|
|
TextSearch_OR_logic ( List |
SOrt by ID desc
|
|
WABI ( ) : System |
|
|
WABI ( byte array ) : System |
Must be supplied CompressedByteArray taken from GetCompressedByteArray function
|
public static MergeByAndLogic ( List |
||
arraysToMerge | List |
|
return | byte[] |
public static MergeByExcludeLogic ( byte array1, byte array2 ) : byte[] | ||
array1 | byte | |
array2 | byte | |
return | byte[] |
public static MergeByOrLogic ( List |
||
arraysToMerge | List |
|
return | byte[] |
public static MergeByXorLogic ( List |
||
arraysToMerge | List |
|
return | byte[] |
public static TextSearch_AND_logic ( List |
||
indexesToCheck | List |
|
return | IEnumerable |
public static TextSearch_AND_logic ( List |
||
indexesToCheck | List |
|
docStart | int | when 0 not counted |
docStop | int | when 0 not counted |
descending | bool | |
return | IEnumerable |
public static TextSearch_OR_logic ( List |
||
indexesToCheck | List |
|
maximalReturnQuantity | int | |
return | IEnumerable |