BitSet

expect class BitSet(size: Int)
actual typealias BitSet = BitSet
actual class BitSet(size: Int)

Simplified version of java.util.BitSet

Constructors

Link copied to clipboard
expect fun BitSet(size: Int)
actual fun BitSet(size: Int)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
expect fun clear(bitIndex: Int)
actual fun clear(bitIndex: Int)
Link copied to clipboard
expect fun get(bitIndex: Int): Boolean
actual fun get(bitIndex: Int): Boolean
Link copied to clipboard
expect fun nextClearBit(fromIndex: Int): Int
actual fun nextClearBit(fromIndex: Int): Int
Link copied to clipboard
expect fun nextSetBit(fromIndex: Int): Int
actual fun nextSetBit(fromIndex: Int): Int
Link copied to clipboard
expect fun set(bitIndex: Int)
expect fun set(fromIndex: Int, toIndex: Int)
actual fun set(bitIndex: Int)
actual fun set(fromIndex: Int, toIndex: Int)