Click or drag to resize

EwahCompressedBitArraySet Method

set the bit at Position i to true, the bits must be set in increasing order. For example, Set(15) and then Set(7) will fail. You must do Set(7) and then Set(15).

Namespace:  VelocityDBExtensions.CompressedBitArray
Assembly:  VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax
public bool Set(
	int i
)

Parameters

i
Type: SystemInt32
the index

Return Value

Type: Boolean
true if the value was set (always true when i>= SizeInBits)
See Also