arrow-fx-coroutines / arrow.fx.coroutines.stream / Chunk / Booleans
class Booleans :
Chunk
<
Boolean
>
<init> | Booleans(values: BooleanArray , offset: Int , length: Int ) |
length | val length: Int |
offset | val offset: Int |
values | val values: BooleanArray |
copyToArray | fun copyToArray(xs: BooleanArray , start: Int ): Unit |
copyToArray_ | fun copyToArray_(xs: Array < Any ?>, start: Int ): Unit |
drop | Drops the first n elements of this chunk.fun drop(n: Int ): Chunk < Boolean > |
get | Returns the element at the specified index. Throws if index is < 0 or >= size.fun get(i: Int ): Boolean |
size | Returns the number of elements in this chunk.fun size(): Int |
splitAtChunk_ | Splits this chunk in to two chunks at the specified index n , which is guaranteed to be in-bounds.fun splitAtChunk_(n: Int ): Pair < Chunk < Boolean >, Chunk < Boolean >> |
take | Takes the first n elements of this chunk.fun take(n: Int ): Chunk < Boolean > |
toArray | fun toArray(): Array < Any ?> |
Do you like Arrow?
✖