diff --git a/docs/-kubit/kubit.collections.array/-bit-array/-bit-array.html b/docs/-kubit/kubit.collections.array/-bit-array/-bit-array.html index ac72a39..4128480 100644 --- a/docs/-kubit/kubit.collections.array/-bit-array/-bit-array.html +++ b/docs/-kubit/kubit.collections.array/-bit-array/-bit-array.html @@ -48,7 +48,7 @@
-1.0.0-alpha01
+1.0.0-alpha02 diff --git a/docs/-kubit/kubit.collections.list/-mutable-int-list/minus-assign.html b/docs/-kubit/kubit.collections.list/-mutable-int-list/minus-assign.html index bc983b5..77f8d80 100644 --- a/docs/-kubit/kubit.collections.list/-mutable-int-list/minus-assign.html +++ b/docs/-kubit/kubit.collections.list/-mutable-int-list/minus-assign.html @@ -48,7 +48,7 @@
-1.0.0-alpha01
+1.0.0-alpha02 @@ -176,7 +176,7 @@

Properties

-
@get:IntRange(from = -1)
val lastIndex: Int

Returns the last valid index in the LongList. This can be -1 when the list is empty.

+

Returns the last valid index in the LongList. This can be -1 when the list is empty.

@@ -191,7 +191,7 @@

Properties

-
@get:IntRange(from = 0)
val size: Int

The number of elements in the LongList.

+
val size: Int

The number of elements in the LongList.

@@ -210,7 +210,7 @@

Functions

-
fun add(element: Long): Boolean

Adds element to the MutableLongList and returns true.

fun add(@IntRange(from = 0) index: Int, element: Long)

Adds element to the MutableLongList at the given index, shifting over any elements at index and after, if any.

+
fun add(element: Long): Boolean

Adds element to the MutableLongList and returns true.

fun add(index: Int, element: Long)

Adds element to the MutableLongList at the given index, shifting over any elements at index and after, if any.

@@ -225,7 +225,7 @@

Functions

-
inline fun addAll(elements: LongArray): Boolean
inline fun addAll(elements: List<Long>): Boolean
inline fun addAll(elements: LongList): Boolean

Adds all elements to the end of the MutableLongList and returns true if the MutableLongList was changed or false if elements was empty.

fun addAll(@IntRange(from = 0) index: Int, elements: LongArray): Boolean
fun addAll(@IntRange(from = 0) index: Int, elements: LongList): Boolean

Adds all elements to the MutableLongList at the given index, shifting over any elements at index and after, if any.

+
inline fun addAll(elements: LongArray): Boolean
inline fun addAll(elements: List<Long>): Boolean
inline fun addAll(elements: LongList): Boolean

Adds all elements to the end of the MutableLongList and returns true if the MutableLongList was changed or false if elements was empty.

fun addAll(index: Int, elements: LongArray): Boolean
fun addAll(index: Int, elements: LongList): Boolean

Adds all elements to the MutableLongList at the given index, shifting over any elements at index and after, if any.

@@ -495,7 +495,7 @@

Functions

-
fun elementAt(@IntRange(from = 0) index: Int): Long

Returns the element at the given index or throws IndexOutOfBoundsException if the index is out of bounds of this collection.

+
fun elementAt(index: Int): Long

Returns the element at the given index or throws IndexOutOfBoundsException if the index is out of bounds of this collection.

@@ -510,7 +510,7 @@

Functions

-
inline fun elementAtOrElse(@IntRange(from = 0) index: Int, defaultValue: (index: Int) -> Long): Long

Returns the element at the given index or defaultValue if index is out of bounds of the collection.

+
inline fun elementAtOrElse(index: Int, defaultValue: (index: Int) -> Long): Long

Returns the element at the given index or defaultValue if index is out of bounds of the collection.

@@ -765,7 +765,7 @@

Functions

-
operator fun get(@IntRange(from = 0) index: Int): Long

Returns the element at the given index or throws IndexOutOfBoundsException if the index is out of bounds of this collection.

+
operator fun get(index: Int): Long

Returns the element at the given index or throws IndexOutOfBoundsException if the index is out of bounds of this collection.

@@ -1035,7 +1035,7 @@

Functions

-
fun removeAt(@IntRange(from = 0) index: Int): Long

Removes the element at the given index and returns it.

+
fun removeAt(index: Int): Long

Removes the element at the given index and returns it.

@@ -1050,7 +1050,7 @@

Functions

-
fun removeRange(@IntRange(from = 0) start: Int, @IntRange(from = 0) end: Int)

Removes items from index start (inclusive) to end (exclusive).

+
fun removeRange(start: Int, end: Int)

Removes items from index start (inclusive) to end (exclusive).

@@ -1125,7 +1125,7 @@

Functions

-
operator fun set(@IntRange(from = 0) index: Int, element: Long): Long

Sets the value at index to element.

+
operator fun set(index: Int, element: Long): Long

Sets the value at index to element.

@@ -1365,7 +1365,7 @@

Functions

-
fun LongList.windowedInPlace(windowSize: Int, step: Int = 1, partialWindows: Boolean = false): WindowedLongList

Returns a list of windows with the given windowSize sliding with the given step. Each window is a view into the original list. Changes in the original list will be reflected in the windows.

+
fun LongList.windowedInPlace(windowSize: Int, step: Int = 1, partialWindows: Boolean = false): WindowedLongList

Returns a WindowedLongList with the given windowSize sliding by step. Each window is a view into the original list.

diff --git a/docs/-kubit/kubit.collections.list/-mutable-long-list/minus-assign.html b/docs/-kubit/kubit.collections.list/-mutable-long-list/minus-assign.html index fdd6cc8..2e41dee 100644 --- a/docs/-kubit/kubit.collections.list/-mutable-long-list/minus-assign.html +++ b/docs/-kubit/kubit.collections.list/-mutable-long-list/minus-assign.html @@ -48,7 +48,7 @@
-1.0.0-alpha01
+1.0.0-alpha02