plusAssign

@JvmName(name = "plusAssignBitset")
inline operator fun DslList<Long, BloomFilterKt.FilterLayerKt.Dsl.BitsetProxy>.plusAssign(value: Long)
Raw bit sets for each layer of the filter.

repeated fixed64 bitset = 2;

Parameters

value

The bitset to add.


@JvmName(name = "plusAssignAllBitset")
inline operator fun DslList<Long, BloomFilterKt.FilterLayerKt.Dsl.BitsetProxy>.plusAssign(values: Iterable<Long>)
Raw bit sets for each layer of the filter.

repeated fixed64 bitset = 2;

Parameters

values

The bitset to add.


@JvmName(name = "plusAssignCount")
inline operator fun DslList<Long, BloomFilterKt.FilterLayerKt.Dsl.CountProxy>.plusAssign(value: Long)
Count of items for each bucket in this filter layer. Only present if this is a *Counting Bloom filter*, in which
the bit set indicates presence for each bucket and the count indicates the value for each bucket.

repeated uint64 count = 4;

Parameters

value

The count to add.


@JvmName(name = "plusAssignAllCount")
inline operator fun DslList<Long, BloomFilterKt.FilterLayerKt.Dsl.CountProxy>.plusAssign(values: Iterable<Long>)
Count of items for each bucket in this filter layer. Only present if this is a *Counting Bloom filter*, in which
the bit set indicates presence for each bucket and the count indicates the value for each bucket.

repeated uint64 count = 4;

Parameters

values

The count to add.