diff --git a/animations/dev.funkymuse.animations.transition.utils/-sequential-transition-set/index.html b/animations/dev.funkymuse.animations.transition.utils/-sequential-transition-set/index.html index 0f8e09702..c8a3a458b 100644 --- a/animations/dev.funkymuse.animations.transition.utils/-sequential-transition-set/index.html +++ b/animations/dev.funkymuse.animations.transition.utils/-sequential-transition-set/index.html @@ -143,7 +143,7 @@

Functions

-
open override fun addTarget(@NonNull p0: View): TransitionSet
open override fun addTarget(@NonNull p0: Class<*>): TransitionSet
open override fun addTarget(@IdRes p0: Int): TransitionSet
open override fun addTarget(@NonNull p0: String): TransitionSet
+
open override fun addTarget(@NonNull p0: View): TransitionSet
open override fun addTarget(@NonNull p0: Class<*>): TransitionSet
open override fun addTarget(@IdRes p0: Int): TransitionSet
open override fun addTarget(@NonNull p0: String): TransitionSet
@@ -233,7 +233,7 @@

Functions

- +
@@ -248,7 +248,7 @@

Functions

-
open override fun excludeTarget(@NonNull p0: View, p1: Boolean): Transition
open override fun excludeTarget(@NonNull p0: Class<*>, p1: Boolean): Transition
open override fun excludeTarget(p0: Int, p1: Boolean): Transition
open override fun excludeTarget(@NonNull p0: String, p1: Boolean): Transition
+
open override fun excludeTarget(@NonNull p0: View, p1: Boolean): Transition
open override fun excludeTarget(@NonNull p0: Class<*>, p1: Boolean): Transition
open override fun excludeTarget(p0: Int, p1: Boolean): Transition
open override fun excludeTarget(@NonNull p0: String, p1: Boolean): Transition
@@ -503,7 +503,7 @@

Functions

- +
@@ -743,7 +743,7 @@

Functions

-
open override fun removeTarget(@NonNull p0: View): TransitionSet
open override fun removeTarget(@NonNull p0: Class<*>): TransitionSet
open override fun removeTarget(@IdRes p0: Int): TransitionSet
open override fun removeTarget(@NonNull p0: String): TransitionSet
+
open override fun removeTarget(@NonNull p0: View): TransitionSet
open override fun removeTarget(@NonNull p0: Class<*>): TransitionSet
open override fun removeTarget(@IdRes p0: Int): TransitionSet
open override fun removeTarget(@NonNull p0: String): TransitionSet
diff --git a/animations/dev.funkymuse.animations.transition/-dissolve-transition/index.html b/animations/dev.funkymuse.animations.transition/-dissolve-transition/index.html index 41dcf6d55..88de938f0 100644 --- a/animations/dev.funkymuse.animations.transition/-dissolve-transition/index.html +++ b/animations/dev.funkymuse.animations.transition/-dissolve-transition/index.html @@ -162,7 +162,7 @@

Functions

- +
@@ -237,7 +237,7 @@

Functions

- +
@@ -252,7 +252,7 @@

Functions

- +
@@ -447,7 +447,7 @@

Functions

- +
@@ -627,7 +627,7 @@

Functions

- +
diff --git a/animations/dev.funkymuse.animations.transition/-stagger-transition/index.html b/animations/dev.funkymuse.animations.transition/-stagger-transition/index.html index 57455fb1d..ae8a229ea 100644 --- a/animations/dev.funkymuse.animations.transition/-stagger-transition/index.html +++ b/animations/dev.funkymuse.animations.transition/-stagger-transition/index.html @@ -143,7 +143,7 @@

Functions

- +
@@ -218,7 +218,7 @@

Functions

- +
@@ -233,7 +233,7 @@

Functions

- +
@@ -443,7 +443,7 @@

Functions

- +
@@ -668,7 +668,7 @@

Functions

- +
diff --git a/compose/placeholder-m3/dev.funkymuse.compose.placeholder.m3/placeholder.html b/compose/placeholder-m3/dev.funkymuse.compose.placeholder.m3/placeholder.html index 4f3b711da..fb56ca278 100644 --- a/compose/placeholder-m3/dev.funkymuse.compose.placeholder.m3/placeholder.html +++ b/compose/placeholder-m3/dev.funkymuse.compose.placeholder.m3/placeholder.html @@ -63,7 +63,7 @@

placeholder

-
fun Modifier.placeholder(visible: Boolean, color: Color = Color.Unspecified, shape: Shape? = null, highlight: PlaceholderHighlight? = null, placeholderFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float> = { spring() }, contentFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float> = { spring() }): Modifier

Draws some skeleton UI which is typically used whilst content is 'loading'.

To customize the color and shape of the placeholder, you can use the foundation version of Modifier.placeholder, along with the values provided by PlaceholderDefaults.

A cross-fade transition will be applied to the content and placeholder UI when the visible value changes. The transition can be customized via the contentFadeTransitionSpec and placeholderFadeTransitionSpec parameters.

You can provide a PlaceholderHighlight which runs an highlight animation on the placeholder. The shimmer and fade implementations are provided for easy usage.

You can find more information on the pattern at the Material Theming Placeholder UI guidelines.

Parameters

visible

whether the placeholder should be visible or not.

color

the color used to draw the placeholder UI. If Color.Unspecified is provided, the placeholder will use PlaceholderDefaults.color.

shape

desired shape of the placeholder. If null is provided the placeholder will use the small shape set in MaterialTheme.shapes.

highlight

optional highlight animation.

placeholderFadeTransitionSpec

The transition spec to use when fading the placeholder on/off screen. The boolean parameter defined for the transition is visible.

contentFadeTransitionSpec

The transition spec to use when fading the content on/off screen. The boolean parameter defined for the transition is visible.

+
fun Modifier.placeholder(visible: Boolean, color: Color = Color.Unspecified, shape: Shape? = null, highlight: PlaceholderHighlight? = null, placeholderFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float> = { spring() }, contentFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float> = { spring() }): Modifier

Draws some skeleton UI which is typically used whilst content is 'loading'.

To customize the color and shape of the placeholder, you can use the foundation version of Modifier.placeholder, along with the values provided by PlaceholderDefaults.

A cross-fade transition will be applied to the content and placeholder UI when the visible value changes. The transition can be customized via the contentFadeTransitionSpec and placeholderFadeTransitionSpec parameters.

You can provide a PlaceholderHighlight which runs an highlight animation on the placeholder. The shimmer and fade implementations are provided for easy usage.

You can find more information on the pattern at the Material Theming Placeholder UI guidelines.

Parameters

visible

whether the placeholder should be visible or not.

color

the color used to draw the placeholder UI. If Color.Unspecified is provided, the placeholder will use PlaceholderDefaults.color.

shape

desired shape of the placeholder. If null is provided the placeholder will use the small shape set in MaterialTheme.shapes.

highlight

optional highlight animation.

placeholderFadeTransitionSpec

The transition spec to use when fading the placeholder on/off screen. The boolean parameter defined for the transition is visible.

contentFadeTransitionSpec

The transition spec to use when fading the content on/off screen. The boolean parameter defined for the transition is visible.

@@ -222,7 +222,7 @@

Functions

- +
@@ -237,7 +237,7 @@

Functions

- +
diff --git a/coroutines/dev.funkymuse.coroutines/index.html b/coroutines/dev.funkymuse.coroutines/index.html index 2747197fc..9b3e63e1d 100644 --- a/coroutines/dev.funkymuse.coroutines/index.html +++ b/coroutines/dev.funkymuse.coroutines/index.html @@ -78,7 +78,7 @@

Types

- +
diff --git a/customviews/dev.funkymuse.customviews.autoStart/-confirmation-dialog-auto-start/index.html b/customviews/dev.funkymuse.customviews.autoStart/-confirmation-dialog-auto-start/index.html index 67878ddb9..10e32de14 100644 --- a/customviews/dev.funkymuse.customviews.autoStart/-confirmation-dialog-auto-start/index.html +++ b/customviews/dev.funkymuse.customviews.autoStart/-confirmation-dialog-auto-start/index.html @@ -256,7 +256,7 @@

Functions

- +
@@ -1516,7 +1516,7 @@

Functions

- +
diff --git a/customviews/dev.funkymuse.customviews.dragAndDrop/-drag-and-drop-container/index.html b/customviews/dev.funkymuse.customviews.dragAndDrop/-drag-and-drop-container/index.html index bd6894f54..696a4e962 100644 --- a/customviews/dev.funkymuse.customviews.dragAndDrop/-drag-and-drop-container/index.html +++ b/customviews/dev.funkymuse.customviews.dragAndDrop/-drag-and-drop-container/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -143,7 +143,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -233,7 +233,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1028,7 +1028,7 @@

Functions

- +
@@ -1358,7 +1358,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1463,7 +1463,7 @@

Functions

- +
@@ -2273,7 +2273,7 @@

Functions

- +
@@ -2483,7 +2483,7 @@

Functions

- +
@@ -3863,7 +3863,7 @@

Functions

- +
@@ -5633,7 +5633,7 @@

Functions

- +
@@ -5648,7 +5648,7 @@

Functions

- +
@@ -6203,7 +6203,7 @@

Functions

- +
@@ -6503,7 +6503,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6518,7 +6518,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6578,7 +6578,7 @@

Functions

- +
@@ -6593,7 +6593,7 @@

Functions

- +
@@ -6683,7 +6683,7 @@

Functions

- +
@@ -7118,7 +7118,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8093,7 +8093,7 @@

Functions

- +
@@ -10178,7 +10178,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.mirrorView/-mirror-view/index.html b/customviews/dev.funkymuse.customviews.mirrorView/-mirror-view/index.html index deb86ea7a..266f9dc19 100644 --- a/customviews/dev.funkymuse.customviews.mirrorView/-mirror-view/index.html +++ b/customviews/dev.funkymuse.customviews.mirrorView/-mirror-view/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -222,7 +222,7 @@

Functions

- +
@@ -912,7 +912,7 @@

Functions

- +
@@ -1182,7 +1182,7 @@

Functions

- +
@@ -1272,7 +1272,7 @@

Functions

- +
@@ -1947,7 +1947,7 @@

Functions

- +
@@ -2142,7 +2142,7 @@

Functions

- +
@@ -3417,7 +3417,7 @@

Functions

- +
@@ -5007,7 +5007,7 @@

Functions

- +
@@ -5022,7 +5022,7 @@

Functions

- +
@@ -5427,7 +5427,7 @@

Functions

- +
@@ -5667,7 +5667,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -5682,7 +5682,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -5742,7 +5742,7 @@

Functions

- +
@@ -5757,7 +5757,7 @@

Functions

- +
@@ -5802,7 +5802,7 @@

Functions

- +
@@ -6072,7 +6072,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -6927,7 +6927,7 @@

Functions

- +
@@ -8772,7 +8772,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.mirrorView/-shared-fade-transition/index.html b/customviews/dev.funkymuse.customviews.mirrorView/-shared-fade-transition/index.html index b3a0d7597..c7d560370 100644 --- a/customviews/dev.funkymuse.customviews.mirrorView/-shared-fade-transition/index.html +++ b/customviews/dev.funkymuse.customviews.mirrorView/-shared-fade-transition/index.html @@ -113,7 +113,7 @@

Functions

- +
@@ -188,7 +188,7 @@

Functions

- +
@@ -203,7 +203,7 @@

Functions

- +
@@ -398,7 +398,7 @@

Functions

- +
@@ -503,7 +503,7 @@

Functions

- +
diff --git a/customviews/dev.funkymuse.customviews.pin/-pin-edit-text/index.html b/customviews/dev.funkymuse.customviews.pin/-pin-edit-text/index.html index a8d91cb07..3164ac1c1 100644 --- a/customviews/dev.funkymuse.customviews.pin/-pin-edit-text/index.html +++ b/customviews/dev.funkymuse.customviews.pin/-pin-edit-text/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -237,7 +237,7 @@

Functions

- +
@@ -1032,7 +1032,7 @@

Functions

- +
@@ -1347,7 +1347,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1437,7 +1437,7 @@

Functions

- +
@@ -2562,7 +2562,7 @@

Functions

- +
@@ -2847,7 +2847,7 @@

Functions

- +
@@ -4962,7 +4962,7 @@

Functions

-
open fun getTextLocale(): Locale
+
open fun getTextLocale(): Locale
@@ -5217,7 +5217,7 @@

Functions

- +
@@ -7107,7 +7107,7 @@

Functions

- +
@@ -7122,7 +7122,7 @@

Functions

- +
@@ -7617,7 +7617,7 @@

Functions

- +
@@ -7872,7 +7872,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -7887,7 +7887,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -7947,7 +7947,7 @@

Functions

- +
@@ -7962,7 +7962,7 @@

Functions

- +
@@ -8007,7 +8007,7 @@

Functions

- +
@@ -8292,7 +8292,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -9657,7 +9657,7 @@

Functions

- +
@@ -11907,7 +11907,7 @@

Functions

-
open fun setTextLocale(p0: Locale)
+
open fun setTextLocale(p0: Locale)
@@ -12552,7 +12552,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-aspect-ratio-frame-layout/index.html b/customviews/dev.funkymuse.customviews.ui/-aspect-ratio-frame-layout/index.html index 7e7d75273..eadb4fa13 100644 --- a/customviews/dev.funkymuse.customviews.ui/-aspect-ratio-frame-layout/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-aspect-ratio-frame-layout/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -237,7 +237,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1032,7 +1032,7 @@

Functions

- +
@@ -1362,7 +1362,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1467,7 +1467,7 @@

Functions

- +
@@ -2277,7 +2277,7 @@

Functions

- +
@@ -2487,7 +2487,7 @@

Functions

- +
@@ -3867,7 +3867,7 @@

Functions

- +
@@ -5637,7 +5637,7 @@

Functions

- +
@@ -5652,7 +5652,7 @@

Functions

- +
@@ -6207,7 +6207,7 @@

Functions

- +
@@ -6507,7 +6507,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6522,7 +6522,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6582,7 +6582,7 @@

Functions

- +
@@ -6597,7 +6597,7 @@

Functions

- +
@@ -6687,7 +6687,7 @@

Functions

- +
@@ -7107,7 +7107,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8067,7 +8067,7 @@

Functions

- +
@@ -10152,7 +10152,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-circular-image-view/index.html b/customviews/dev.funkymuse.customviews.ui/-circular-image-view/index.html index b367e1393..98c65c56e 100644 --- a/customviews/dev.funkymuse.customviews.ui/-circular-image-view/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-circular-image-view/index.html @@ -132,7 +132,7 @@

Functions

- +
@@ -162,7 +162,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -252,7 +252,7 @@

Functions

- +
@@ -972,7 +972,7 @@

Functions

- +
@@ -1242,7 +1242,7 @@

Functions

- +
@@ -1332,7 +1332,7 @@

Functions

- +
@@ -2082,7 +2082,7 @@

Functions

- +
@@ -2277,7 +2277,7 @@

Functions

- +
@@ -3732,7 +3732,7 @@

Functions

- +
@@ -5337,7 +5337,7 @@

Functions

- +
@@ -5352,7 +5352,7 @@

Functions

- +
@@ -5772,7 +5772,7 @@

Functions

- +
@@ -6012,7 +6012,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6027,7 +6027,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6087,7 +6087,7 @@

Functions

- +
@@ -6102,7 +6102,7 @@

Functions

- +
@@ -6147,7 +6147,7 @@

Functions

- +
@@ -6417,7 +6417,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -7377,7 +7377,7 @@

Functions

- +
@@ -9552,7 +9552,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-color-progress-bar/index.html b/customviews/dev.funkymuse.customviews.ui/-color-progress-bar/index.html index dc4674d95..c72f2b7ca 100644 --- a/customviews/dev.funkymuse.customviews.ui/-color-progress-bar/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-color-progress-bar/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -203,7 +203,7 @@

Functions

- +
@@ -893,7 +893,7 @@

Functions

- +
@@ -1163,7 +1163,7 @@

Functions

- +
@@ -1253,7 +1253,7 @@

Functions

- +
@@ -1943,7 +1943,7 @@

Functions

- +
@@ -2138,7 +2138,7 @@

Functions

- +
@@ -3758,7 +3758,7 @@

Functions

- +
@@ -5408,7 +5408,7 @@

Functions

- +
@@ -5423,7 +5423,7 @@

Functions

- +
@@ -5858,7 +5858,7 @@

Functions

- +
@@ -6098,7 +6098,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6113,7 +6113,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6173,7 +6173,7 @@

Functions

- +
@@ -6188,7 +6188,7 @@

Functions

- +
@@ -6233,7 +6233,7 @@

Functions

- +
@@ -6503,7 +6503,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -7373,7 +7373,7 @@

Functions

- +
@@ -9608,7 +9608,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-non-swipeable-view-pager/index.html b/customviews/dev.funkymuse.customviews.ui/-non-swipeable-view-pager/index.html index cdc51e585..b9a2fb16b 100644 --- a/customviews/dev.funkymuse.customviews.ui/-non-swipeable-view-pager/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-non-swipeable-view-pager/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -248,7 +248,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1088,7 +1088,7 @@

Functions

- +
@@ -1463,7 +1463,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1568,7 +1568,7 @@

Functions

- +
@@ -2393,7 +2393,7 @@

Functions

- +
@@ -2603,7 +2603,7 @@

Functions

- +
@@ -3998,7 +3998,7 @@

Functions

- +
@@ -5783,7 +5783,7 @@

Functions

- +
@@ -5798,7 +5798,7 @@

Functions

- +
@@ -6383,7 +6383,7 @@

Functions

- +
@@ -6683,7 +6683,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6698,7 +6698,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6758,7 +6758,7 @@

Functions

- +
@@ -6773,7 +6773,7 @@

Functions

- +
@@ -6863,7 +6863,7 @@

Functions

- +
@@ -7313,7 +7313,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8303,7 +8303,7 @@

Functions

- +
@@ -10448,7 +10448,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-shadow-view/index.html b/customviews/dev.funkymuse.customviews.ui/-shadow-view/index.html index 50c0149f9..9caeafedf 100644 --- a/customviews/dev.funkymuse.customviews.ui/-shadow-view/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-shadow-view/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -203,7 +203,7 @@

Functions

- +
@@ -893,7 +893,7 @@

Functions

- +
@@ -1163,7 +1163,7 @@

Functions

- +
@@ -1253,7 +1253,7 @@

Functions

- +
@@ -1928,7 +1928,7 @@

Functions

- +
@@ -2123,7 +2123,7 @@

Functions

- +
@@ -3398,7 +3398,7 @@

Functions

- +
@@ -4988,7 +4988,7 @@

Functions

- +
@@ -5003,7 +5003,7 @@

Functions

- +
@@ -5408,7 +5408,7 @@

Functions

- +
@@ -5648,7 +5648,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -5663,7 +5663,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -5723,7 +5723,7 @@

Functions

- +
@@ -5738,7 +5738,7 @@

Functions

- +
@@ -5783,7 +5783,7 @@

Functions

- +
@@ -6053,7 +6053,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -6908,7 +6908,7 @@

Functions

- +
@@ -8753,7 +8753,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-swipe-distance-view/index.html b/customviews/dev.funkymuse.customviews.ui/-swipe-distance-view/index.html index 616e30886..ec2c6de8c 100644 --- a/customviews/dev.funkymuse.customviews.ui/-swipe-distance-view/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-swipe-distance-view/index.html @@ -132,7 +132,7 @@

Functions

- +
@@ -162,7 +162,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -252,7 +252,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1047,7 +1047,7 @@

Functions

- +
@@ -1392,7 +1392,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1497,7 +1497,7 @@

Functions

- +
@@ -2307,7 +2307,7 @@

Functions

- +
@@ -2517,7 +2517,7 @@

Functions

- +
@@ -3957,7 +3957,7 @@

Functions

- +
@@ -5772,7 +5772,7 @@

Functions

- +
@@ -5787,7 +5787,7 @@

Functions

- +
@@ -6372,7 +6372,7 @@

Functions

- +
@@ -6672,7 +6672,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6687,7 +6687,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6747,7 +6747,7 @@

Functions

- +
@@ -6762,7 +6762,7 @@

Functions

- +
@@ -6852,7 +6852,7 @@

Functions

- +
@@ -7272,7 +7272,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8262,7 +8262,7 @@

Functions

- +
@@ -10437,7 +10437,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews.ui/-wrap-content-height-view-pager/index.html b/customviews/dev.funkymuse.customviews.ui/-wrap-content-height-view-pager/index.html index 2ed263347..b1bd8fd41 100644 --- a/customviews/dev.funkymuse.customviews.ui/-wrap-content-height-view-pager/index.html +++ b/customviews/dev.funkymuse.customviews.ui/-wrap-content-height-view-pager/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -248,7 +248,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1088,7 +1088,7 @@

Functions

- +
@@ -1463,7 +1463,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1568,7 +1568,7 @@

Functions

- +
@@ -2393,7 +2393,7 @@

Functions

- +
@@ -2603,7 +2603,7 @@

Functions

- +
@@ -3998,7 +3998,7 @@

Functions

- +
@@ -5783,7 +5783,7 @@

Functions

- +
@@ -5798,7 +5798,7 @@

Functions

- +
@@ -6383,7 +6383,7 @@

Functions

- +
@@ -6683,7 +6683,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6698,7 +6698,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6758,7 +6758,7 @@

Functions

- +
@@ -6773,7 +6773,7 @@

Functions

- +
@@ -6863,7 +6863,7 @@

Functions

- +
@@ -7313,7 +7313,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8303,7 +8303,7 @@

Functions

- +
@@ -10448,7 +10448,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-app-rater/-app-rater-dialog/index.html b/customviews/dev.funkymuse.customviews/-app-rater/-app-rater-dialog/index.html index 088b68014..ef90a6625 100644 --- a/customviews/dev.funkymuse.customviews/-app-rater/-app-rater-dialog/index.html +++ b/customviews/dev.funkymuse.customviews/-app-rater/-app-rater-dialog/index.html @@ -252,7 +252,7 @@

Functions

- +
@@ -1512,7 +1512,7 @@

Functions

- +
diff --git a/customviews/dev.funkymuse.customviews/-custom-keyboard-view/index.html b/customviews/dev.funkymuse.customviews/-custom-keyboard-view/index.html index 4ecd9ab9f..b4e11e68d 100644 --- a/customviews/dev.funkymuse.customviews/-custom-keyboard-view/index.html +++ b/customviews/dev.funkymuse.customviews/-custom-keyboard-view/index.html @@ -132,7 +132,7 @@

Functions

- +
@@ -162,7 +162,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -252,7 +252,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1047,7 +1047,7 @@

Functions

- +
@@ -1377,7 +1377,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1482,7 +1482,7 @@

Functions

- +
@@ -2292,7 +2292,7 @@

Functions

- +
@@ -2502,7 +2502,7 @@

Functions

- +
@@ -3882,7 +3882,7 @@

Functions

- +
@@ -5667,7 +5667,7 @@

Functions

- +
@@ -5682,7 +5682,7 @@

Functions

- +
@@ -6237,7 +6237,7 @@

Functions

- +
@@ -6537,7 +6537,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6552,7 +6552,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6612,7 +6612,7 @@

Functions

- +
@@ -6627,7 +6627,7 @@

Functions

- +
@@ -6717,7 +6717,7 @@

Functions

- +
@@ -7137,7 +7137,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8097,7 +8097,7 @@

Functions

- +
@@ -10182,7 +10182,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-customizable-card-view/index.html b/customviews/dev.funkymuse.customviews/-customizable-card-view/index.html index 1e4a0fd74..456f05b2c 100644 --- a/customviews/dev.funkymuse.customviews/-customizable-card-view/index.html +++ b/customviews/dev.funkymuse.customviews/-customizable-card-view/index.html @@ -147,7 +147,7 @@

Functions

- +
@@ -177,7 +177,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -267,7 +267,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1062,7 +1062,7 @@

Functions

- +
@@ -1392,7 +1392,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1497,7 +1497,7 @@

Functions

- +
@@ -2487,7 +2487,7 @@

Functions

- +
@@ -2697,7 +2697,7 @@

Functions

- +
@@ -4212,7 +4212,7 @@

Functions

- +
@@ -6012,7 +6012,7 @@

Functions

- +
@@ -6027,7 +6027,7 @@

Functions

- +
@@ -6582,7 +6582,7 @@

Functions

- +
@@ -6882,7 +6882,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6897,7 +6897,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6957,7 +6957,7 @@

Functions

- +
@@ -6972,7 +6972,7 @@

Functions

- +
@@ -7062,7 +7062,7 @@

Functions

- +
@@ -7482,7 +7482,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8637,7 +8637,7 @@

Functions

- +
@@ -10902,7 +10902,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-divider-view/index.html b/customviews/dev.funkymuse.customviews/-divider-view/index.html index 2f418177f..24f92dc7b 100644 --- a/customviews/dev.funkymuse.customviews/-divider-view/index.html +++ b/customviews/dev.funkymuse.customviews/-divider-view/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -222,7 +222,7 @@

Functions

- +
@@ -912,7 +912,7 @@

Functions

- +
@@ -1182,7 +1182,7 @@

Functions

- +
@@ -1272,7 +1272,7 @@

Functions

- +
@@ -1947,7 +1947,7 @@

Functions

- +
@@ -2142,7 +2142,7 @@

Functions

- +
@@ -3417,7 +3417,7 @@

Functions

- +
@@ -5007,7 +5007,7 @@

Functions

- +
@@ -5022,7 +5022,7 @@

Functions

- +
@@ -5427,7 +5427,7 @@

Functions

- +
@@ -5667,7 +5667,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -5682,7 +5682,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -5742,7 +5742,7 @@

Functions

- +
@@ -5757,7 +5757,7 @@

Functions

- +
@@ -5802,7 +5802,7 @@

Functions

- +
@@ -6072,7 +6072,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -6927,7 +6927,7 @@

Functions

- +
@@ -8772,7 +8772,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-drawing-canvas/index.html b/customviews/dev.funkymuse.customviews/-drawing-canvas/index.html index 56415103c..761f82a49 100644 --- a/customviews/dev.funkymuse.customviews/-drawing-canvas/index.html +++ b/customviews/dev.funkymuse.customviews/-drawing-canvas/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -222,7 +222,7 @@

Functions

- +
@@ -927,7 +927,7 @@

Functions

- +
@@ -1197,7 +1197,7 @@

Functions

- +
@@ -1287,7 +1287,7 @@

Functions

- +
@@ -1962,7 +1962,7 @@

Functions

- +
@@ -2157,7 +2157,7 @@

Functions

- +
@@ -3432,7 +3432,7 @@

Functions

- +
@@ -5022,7 +5022,7 @@

Functions

- +
@@ -5037,7 +5037,7 @@

Functions

- +
@@ -5442,7 +5442,7 @@

Functions

- +
@@ -5682,7 +5682,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -5697,7 +5697,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -5757,7 +5757,7 @@

Functions

- +
@@ -5772,7 +5772,7 @@

Functions

- +
@@ -5817,7 +5817,7 @@

Functions

- +
@@ -6087,7 +6087,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -6942,7 +6942,7 @@

Functions

- +
@@ -8787,7 +8787,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-nested-scrollable-host/index.html b/customviews/dev.funkymuse.customviews/-nested-scrollable-host/index.html index 158b4945a..4ac5943be 100644 --- a/customviews/dev.funkymuse.customviews/-nested-scrollable-host/index.html +++ b/customviews/dev.funkymuse.customviews/-nested-scrollable-host/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -218,7 +218,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1013,7 +1013,7 @@

Functions

- +
@@ -1343,7 +1343,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1448,7 +1448,7 @@

Functions

- +
@@ -2258,7 +2258,7 @@

Functions

- +
@@ -2468,7 +2468,7 @@

Functions

- +
@@ -3848,7 +3848,7 @@

Functions

- +
@@ -5618,7 +5618,7 @@

Functions

- +
@@ -5633,7 +5633,7 @@

Functions

- +
@@ -6188,7 +6188,7 @@

Functions

- +
@@ -6488,7 +6488,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6503,7 +6503,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6563,7 +6563,7 @@

Functions

- +
@@ -6578,7 +6578,7 @@

Functions

- +
@@ -6668,7 +6668,7 @@

Functions

- +
@@ -7088,7 +7088,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8048,7 +8048,7 @@

Functions

- +
@@ -10133,7 +10133,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-non-scrollable-list-view/index.html b/customviews/dev.funkymuse.customviews/-non-scrollable-list-view/index.html index 889bc9727..700b90d64 100644 --- a/customviews/dev.funkymuse.customviews/-non-scrollable-list-view/index.html +++ b/customviews/dev.funkymuse.customviews/-non-scrollable-list-view/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -248,7 +248,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1163,7 +1163,7 @@

Functions

- +
@@ -1493,7 +1493,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1613,7 +1613,7 @@

Functions

- +
@@ -2618,7 +2618,7 @@

Functions

- +
@@ -2843,7 +2843,7 @@

Functions

- +
@@ -4553,7 +4553,7 @@

Functions

- +
@@ -6503,7 +6503,7 @@

Functions

- +
@@ -6518,7 +6518,7 @@

Functions

- +
@@ -7193,7 +7193,7 @@

Functions

- +
@@ -7568,7 +7568,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -7583,7 +7583,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -7643,7 +7643,7 @@

Functions

- +
@@ -7658,7 +7658,7 @@

Functions

- +
@@ -7763,7 +7763,7 @@

Functions

- +
@@ -8213,7 +8213,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -9413,7 +9413,7 @@

Functions

- +
@@ -11903,7 +11903,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-ripple-canvas/index.html b/customviews/dev.funkymuse.customviews/-ripple-canvas/index.html index fa425f714..a8e087b39 100644 --- a/customviews/dev.funkymuse.customviews/-ripple-canvas/index.html +++ b/customviews/dev.funkymuse.customviews/-ripple-canvas/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -222,7 +222,7 @@

Functions

- +
@@ -912,7 +912,7 @@

Functions

- +
@@ -1197,7 +1197,7 @@

Functions

- +
@@ -1287,7 +1287,7 @@

Functions

- +
@@ -1962,7 +1962,7 @@

Functions

- +
@@ -2157,7 +2157,7 @@

Functions

- +
@@ -3432,7 +3432,7 @@

Functions

- +
@@ -5022,7 +5022,7 @@

Functions

- +
@@ -5037,7 +5037,7 @@

Functions

- +
@@ -5442,7 +5442,7 @@

Functions

- +
@@ -5682,7 +5682,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -5697,7 +5697,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -5757,7 +5757,7 @@

Functions

- +
@@ -5772,7 +5772,7 @@

Functions

- +
@@ -5817,7 +5817,7 @@

Functions

- +
@@ -6102,7 +6102,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -6972,7 +6972,7 @@

Functions

- +
@@ -8817,7 +8817,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-scaling-view/index.html b/customviews/dev.funkymuse.customviews/-scaling-view/index.html index 3ae3cf335..8b64aaea1 100644 --- a/customviews/dev.funkymuse.customviews/-scaling-view/index.html +++ b/customviews/dev.funkymuse.customviews/-scaling-view/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -218,7 +218,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1013,7 +1013,7 @@

Functions

- +
@@ -1343,7 +1343,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1448,7 +1448,7 @@

Functions

- +
@@ -2258,7 +2258,7 @@

Functions

- +
@@ -2468,7 +2468,7 @@

Functions

- +
@@ -3848,7 +3848,7 @@

Functions

- +
@@ -5633,7 +5633,7 @@

Functions

- +
@@ -5648,7 +5648,7 @@

Functions

- +
@@ -6293,7 +6293,7 @@

Functions

- +
@@ -6638,7 +6638,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6653,7 +6653,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6713,7 +6713,7 @@

Functions

- +
@@ -6728,7 +6728,7 @@

Functions

- +
@@ -6818,7 +6818,7 @@

Functions

- +
@@ -7238,7 +7238,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8198,7 +8198,7 @@

Functions

- +
@@ -10283,7 +10283,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-stateful-motion-layout/index.html b/customviews/dev.funkymuse.customviews/-stateful-motion-layout/index.html index cf17033ec..3e360e252 100644 --- a/customviews/dev.funkymuse.customviews/-stateful-motion-layout/index.html +++ b/customviews/dev.funkymuse.customviews/-stateful-motion-layout/index.html @@ -117,7 +117,7 @@

Functions

- +
@@ -147,7 +147,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -237,7 +237,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1047,7 +1047,7 @@

Functions

- +
@@ -1407,7 +1407,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1527,7 +1527,7 @@

Functions

- +
@@ -2187,7 +2187,7 @@

Functions

- +
@@ -2442,7 +2442,7 @@

Functions

- +
@@ -2652,7 +2652,7 @@

Functions

- +
@@ -4137,7 +4137,7 @@

Functions

- +
@@ -6042,7 +6042,7 @@

Functions

- +
@@ -6057,7 +6057,7 @@

Functions

- +
@@ -6612,7 +6612,7 @@

Functions

- +
@@ -6912,7 +6912,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6927,7 +6927,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6987,7 +6987,7 @@

Functions

- +
@@ -7002,7 +7002,7 @@

Functions

- +
@@ -7122,7 +7122,7 @@

Functions

- +
@@ -7557,7 +7557,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8562,7 +8562,7 @@

Functions

- +
@@ -10947,7 +10947,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/customviews/dev.funkymuse.customviews/-wrap-content-height-view-pager/index.html b/customviews/dev.funkymuse.customviews/-wrap-content-height-view-pager/index.html index 0917d29ba..d26a47c02 100644 --- a/customviews/dev.funkymuse.customviews/-wrap-content-height-view-pager/index.html +++ b/customviews/dev.funkymuse.customviews/-wrap-content-height-view-pager/index.html @@ -98,7 +98,7 @@

Functions

- +
@@ -128,7 +128,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -248,7 +248,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1088,7 +1088,7 @@

Functions

- +
@@ -1463,7 +1463,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1568,7 +1568,7 @@

Functions

- +
@@ -2393,7 +2393,7 @@

Functions

- +
@@ -2603,7 +2603,7 @@

Functions

- +
@@ -3998,7 +3998,7 @@

Functions

- +
@@ -5783,7 +5783,7 @@

Functions

- +
@@ -5798,7 +5798,7 @@

Functions

- +
@@ -6383,7 +6383,7 @@

Functions

- +
@@ -6683,7 +6683,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6698,7 +6698,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6758,7 +6758,7 @@

Functions

- +
@@ -6773,7 +6773,7 @@

Functions

- +
@@ -6863,7 +6863,7 @@

Functions

- +
@@ -7313,7 +7313,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -8303,7 +8303,7 @@

Functions

- +
@@ -10448,7 +10448,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.graphs.adjacency/-adjacency-list/edges.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.graphs.adjacency/-adjacency-list/edges.html index 6e8a5653a..c5d8ff3e6 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.graphs.adjacency/-adjacency-list/edges.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.graphs.adjacency/-adjacency-list/edges.html @@ -63,7 +63,7 @@

edges

-
open override fun edges(source: Vertex<T>): ArrayList<Edge<T>>
+
open override fun edges(source: Vertex<T>): ArrayList<Edge<T>>
-
open override fun edges(source: Vertex<T>): ArrayList<Edge<T>>
+
open override fun edges(source: Vertex<T>): ArrayList<Edge<T>>
diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list-iterator/index.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list-iterator/index.html index 31df25e6c..e1b72985c 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list-iterator/index.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list-iterator/index.html @@ -98,7 +98,7 @@

Functions

-
open fun forEachRemaining(p0: Consumer<in T>)
+
open fun forEachRemaining(p0: Consumer<in T>)
diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list/index.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list/index.html index c1d689da7..fdf1f9bac 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list/index.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/-linked-list/index.html @@ -62,7 +62,7 @@

LinkedList

-
+
@@ -207,7 +207,7 @@

Functions

-
open fun forEach(p0: Consumer<in T>)
+
open fun forEach(p0: Consumer<in T>)
@@ -327,7 +327,7 @@

Functions

-
open fun parallelStream(): Stream<T>
+
open fun parallelStream(): Stream<T>
@@ -432,7 +432,7 @@

Functions

-
open fun removeIf(p0: Predicate<in T>): Boolean
+
open fun removeIf(p0: Predicate<in T>): Boolean
@@ -492,7 +492,7 @@

Functions

- +
@@ -507,7 +507,7 @@

Functions

-
open fun stream(): Stream<T>
+
open fun stream(): Stream<T>
@@ -522,7 +522,7 @@

Functions

-
open fun <T : Any> toArray(p0: IntFunction<Array<T>>): Array<T>
+
open fun <T : Any> toArray(p0: IntFunction<Array<T>>): Array<T>
diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/index.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/index.html index d49a2723a..5ac21dc88 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/index.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.linkedList/index.html @@ -78,7 +78,7 @@

Types

- +
diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/index.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/index.html index 99784b7b9..efdfa6a57 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/index.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/index.html @@ -243,7 +243,7 @@

Functions

-

Iteratively raises a number to a certain power. For description refer to the method above.

+

Iteratively raises a number to a certain power. For description refer to the method above.

diff --git a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/raise-to-power-big.html b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/raise-to-power-big.html index 15c7f92cb..f29a12463 100644 --- a/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/raise-to-power-big.html +++ b/dataStructuresAndAlgorithms/dev.funkymuse.datastructuresandalgorithms.mathematics/raise-to-power-big.html @@ -63,7 +63,7 @@

raiseToPowerBig

-

Iteratively raises a number to a certain power. For description refer to the method above.

+

Iteratively raises a number to a certain power. For description refer to the method above.

- +
@@ -93,7 +93,7 @@

Properties

- +
diff --git a/dateTime/dev.funkymuse.datetime/-timestamp-convert/asctime-to-date.html b/dateTime/dev.funkymuse.datetime/-timestamp-convert/asctime-to-date.html index 61b03484d..8a101bcfc 100644 --- a/dateTime/dev.funkymuse.datetime/-timestamp-convert/asctime-to-date.html +++ b/dateTime/dev.funkymuse.datetime/-timestamp-convert/asctime-to-date.html @@ -63,7 +63,7 @@

asctimeToDate

-
fun asctimeToDate(timestamp: String): Date?

Converts an asctime-style timestamp to a Date.

+
fun asctimeToDate(timestamp: String): Date?

Converts an asctime-style timestamp to a Date.

-
fun asctimeToDate(timestamp: String): Date?

Converts an asctime-style timestamp to a Date.

+
fun asctimeToDate(timestamp: String): Date?

Converts an asctime-style timestamp to a Date.

@@ -158,7 +158,7 @@

Functions

-

Converts a Date to an asctime-style timestamp.

+

Converts a Date to an asctime-style timestamp.

@@ -173,7 +173,7 @@

Functions

-

Converts a Date to an ISO-8601-style timestamp.

+

Converts a Date to an ISO-8601-style timestamp.

@@ -188,7 +188,7 @@

Functions

-

Converts a Date to an RFC-1036-style timestamp.

+

Converts a Date to an RFC-1036-style timestamp.

@@ -203,7 +203,7 @@

Functions

-

Converts a Date to an RFC-1123-style timestamp.

+

Converts a Date to an RFC-1123-style timestamp.

@@ -218,7 +218,7 @@

Functions

- +
@@ -233,7 +233,7 @@

Functions

- +
@@ -248,7 +248,7 @@

Functions

-
fun httpToDate(timestamp: String): Date?

Converts an HTTP-style timestamp to a Date. The timestamp could be any of RFC 1123, RFC 1036, or C's asctime().

+
fun httpToDate(timestamp: String): Date?

Converts an HTTP-style timestamp to a Date. The timestamp could be any of RFC 1123, RFC 1036, or C's asctime().

@@ -278,7 +278,7 @@

Functions

-
fun iso8601ToDate(timestamp: String): Date?

Converts an ISO-8601-style timestamp to a Date.

+
fun iso8601ToDate(timestamp: String): Date?

Converts an ISO-8601-style timestamp to a Date.

@@ -293,7 +293,7 @@

Functions

-
fun rfc1036ToDate(timestamp: String): Date?

Converts an RFC-1036-style timestamp to a Date.

+
fun rfc1036ToDate(timestamp: String): Date?

Converts an RFC-1036-style timestamp to a Date.

@@ -308,7 +308,7 @@

Functions

-
fun rfc1123ToDate(timestamp: String): Date?

Converts an RFC-1123-style timestamp to a Date.

+
fun rfc1123ToDate(timestamp: String): Date?

Converts an RFC-1123-style timestamp to a Date.

@@ -323,7 +323,7 @@

Functions

-
fun stringDateToDate(StrDate: String): Date?
+
fun stringDateToDate(StrDate: String): Date?
diff --git a/dateTime/dev.funkymuse.datetime/-timestamp-convert/iso8601-to-date.html b/dateTime/dev.funkymuse.datetime/-timestamp-convert/iso8601-to-date.html index 57ced1b5d..f8dee7bf7 100644 --- a/dateTime/dev.funkymuse.datetime/-timestamp-convert/iso8601-to-date.html +++ b/dateTime/dev.funkymuse.datetime/-timestamp-convert/iso8601-to-date.html @@ -63,7 +63,7 @@

iso8601ToDate

-
fun iso8601ToDate(timestamp: String): Date?

Converts an ISO-8601-style timestamp to a Date.

+
fun iso8601ToDate(timestamp: String): Date?

Converts an ISO-8601-style timestamp to a Date.

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

-

Gives Calendar object from Date

+

Gives Calendar object from Date

@@ -187,7 +187,7 @@

Properties

- +
@@ -202,7 +202,7 @@

Properties

-

get Current Date.

+

get Current Date.

@@ -232,7 +232,7 @@

Properties

-

Gets value of DayOfMonth from Calendar Object

Gets value of DayOfMonth from Date Object

+

Gets value of DayOfMonth from Calendar Object

Gets value of DayOfMonth from Date Object

@@ -247,7 +247,7 @@

Properties

- +
@@ -262,7 +262,7 @@

Properties

- +
@@ -277,7 +277,7 @@

Properties

- +
@@ -292,7 +292,7 @@

Properties

- +
@@ -307,7 +307,7 @@

Properties

- +
@@ -337,7 +337,7 @@

Properties

-

Gets value of Hour from Calendar Object

Gets value of Hour from Date Object

+

Gets value of Hour from Calendar Object

Gets value of Hour from Date Object

@@ -352,7 +352,7 @@

Properties

-

Gets value of HourOfDay from Calendar Object

Gets value of HourOfDay from Date Object

+

Gets value of HourOfDay from Calendar Object

Gets value of HourOfDay from Date Object

@@ -367,7 +367,7 @@

Properties

- +
@@ -382,7 +382,7 @@

Properties

- +
@@ -397,7 +397,7 @@

Properties

- +
@@ -412,7 +412,7 @@

Properties

- +
@@ -427,7 +427,7 @@

Properties

- +
@@ -442,7 +442,7 @@

Properties

- +
@@ -457,7 +457,7 @@

Properties

- +
@@ -472,7 +472,7 @@

Properties

- +
@@ -487,7 +487,7 @@

Properties

- +
@@ -502,7 +502,7 @@

Properties

- +
@@ -517,7 +517,7 @@

Properties

- +
@@ -532,7 +532,7 @@

Properties

- +
@@ -547,7 +547,7 @@

Properties

- +
@@ -577,7 +577,7 @@

Properties

-

Gets value of Minute from Calendar Object

Gets value of Minute from Date Object

+

Gets value of Minute from Calendar Object

Gets value of Minute from Date Object

@@ -592,7 +592,7 @@

Properties

-

Gets value of Month from Calendar Object

+

Gets value of Month from Calendar Object

@@ -607,7 +607,7 @@

Properties

-

Gets value of Month from Date Object

+

Gets value of Month from Date Object

@@ -637,7 +637,7 @@

Properties

-

Gets value of Second from Calendar Object

Gets value of Second from Date Object

+

Gets value of Second from Calendar Object

Gets value of Second from Date Object

@@ -697,7 +697,7 @@

Properties

- +
@@ -712,7 +712,7 @@

Properties

-

Gets Year directly from Calendar Object

+

Gets Year directly from Calendar Object

@@ -727,7 +727,7 @@

Properties

-

Gets value of DayOfMonth from Date Object

+

Gets value of DayOfMonth from Date Object

@@ -791,7 +791,7 @@

Functions

-
fun Date.convertTo(format: String): String?
+
fun Date.convertTo(format: String): String?
@@ -806,7 +806,7 @@

Functions

-
fun Date.day(): Int
+
fun Date.day(): Int
@@ -821,7 +821,7 @@

Functions

- +
@@ -836,7 +836,7 @@

Functions

-
fun Date.dayOfWeekName(locale: Locale = Locale.getDefault()): String?
+
fun Date.dayOfWeekName(locale: Locale = Locale.getDefault()): String?
@@ -851,7 +851,7 @@

Functions

- +
@@ -866,7 +866,7 @@

Functions

- +
@@ -881,7 +881,7 @@

Functions

- +
@@ -896,7 +896,7 @@

Functions

- +
@@ -956,7 +956,7 @@

Functions

-
fun Date.format(pattern: String, locale: Locale): String
+
fun Date.format(pattern: String, locale: Locale): String
@@ -971,7 +971,7 @@

Functions

-

Formats date according to device's default date format

+

Formats date according to device's default date format

@@ -986,7 +986,7 @@

Functions

-

Formats time according to device's default time format

+

Formats time according to device's default time format

@@ -1031,7 +1031,7 @@

Functions

-
fun Date.getAge(): Int
+
fun Date.getAge(): Int
@@ -1061,7 +1061,7 @@

Functions

- +
@@ -1076,7 +1076,7 @@

Functions

- +
@@ -1091,7 +1091,7 @@

Functions

- +
@@ -1106,7 +1106,7 @@

Functions

- +
@@ -1136,7 +1136,7 @@

Functions

- +
@@ -1166,7 +1166,7 @@

Functions

- +
@@ -1181,7 +1181,7 @@

Functions

- +
@@ -1196,7 +1196,7 @@

Functions

- +
@@ -1211,7 +1211,7 @@

Functions

- +
@@ -1241,7 +1241,7 @@

Functions

-
fun getDateDifferense(startDate: Date, endDate: Date): Pair<String, Long>?
+
fun getDateDifferense(startDate: Date, endDate: Date): Pair<String, Long>?
@@ -1361,7 +1361,7 @@

Functions

-
fun Date.getDifferenceInDays(compareDate: Date): Long
+
fun Date.getDifferenceInDays(compareDate: Date): Long
@@ -1391,7 +1391,7 @@

Functions

- +
@@ -1406,7 +1406,7 @@

Functions

- +
@@ -1571,7 +1571,7 @@

Functions

- +
@@ -1646,7 +1646,7 @@

Functions

- +
@@ -1736,7 +1736,7 @@

Functions

-
fun Date.hour(): Int
+
fun Date.hour(): Int
@@ -1751,7 +1751,7 @@

Functions

- +
@@ -1766,7 +1766,7 @@

Functions

-
fun Date.isDateSameDay(compareDate: Date): Boolean
+
fun Date.isDateSameDay(compareDate: Date): Boolean
@@ -1781,7 +1781,7 @@

Functions

- +
@@ -1796,7 +1796,7 @@

Functions

- +
@@ -1811,7 +1811,7 @@

Functions

- +
@@ -1826,7 +1826,7 @@

Functions

- +
@@ -1841,7 +1841,7 @@

Functions

- +
@@ -1856,7 +1856,7 @@

Functions

- +
@@ -1871,7 +1871,7 @@

Functions

- +
@@ -1886,7 +1886,7 @@

Functions

- +
@@ -1901,7 +1901,7 @@

Functions

- +
@@ -1916,7 +1916,7 @@

Functions

- +
@@ -1931,7 +1931,7 @@

Functions

- +
@@ -1946,7 +1946,7 @@

Functions

- +
@@ -1961,7 +1961,7 @@

Functions

-
fun Date.minute(): Int
+
fun Date.minute(): Int
@@ -1976,7 +1976,7 @@

Functions

- +
@@ -1991,7 +1991,7 @@

Functions

-
fun Date.month(): Int
+
fun Date.month(): Int
@@ -2006,7 +2006,7 @@

Functions

-
fun Date.monthName(locale: Locale = Locale.getDefault()): String?
+
fun Date.monthName(locale: Locale = Locale.getDefault()): String?
@@ -2021,7 +2021,7 @@

Functions

- +
@@ -2036,7 +2036,7 @@

Functions

- +
@@ -2051,7 +2051,7 @@

Functions

- +
@@ -2066,7 +2066,7 @@

Functions

-
fun Date.second(): Int
+
fun Date.second(): Int
@@ -2081,7 +2081,7 @@

Functions

- +
@@ -2111,7 +2111,7 @@

Functions

- +
@@ -2126,7 +2126,7 @@

Functions

-
fun Date.today(): Date
+
fun Date.today(): Date
@@ -2141,7 +2141,7 @@

Functions

- +
@@ -2156,7 +2156,7 @@

Functions

-
@RequiresApi(value = 26)
fun Instant.toOffsetDateTime(zone: ZoneId = ZoneId.systemDefault()): OffsetDateTime

Obtains an OffsetDateTime instance from Instant

+
@RequiresApi(value = 26)
fun Instant.toOffsetDateTime(zone: ZoneId = ZoneId.systemDefault()): OffsetDateTime

Obtains an OffsetDateTime instance from Instant

@@ -2171,7 +2171,7 @@

Functions

-
fun Date.toString(format: String): String
+
fun Date.toString(format: String): String
@@ -2186,7 +2186,7 @@

Functions

- +
@@ -2201,7 +2201,7 @@

Functions

-
fun Date.with(weekday: Int = -1): Date
fun Date.with(year: Int = -1, month: Int = -1, day: Int = -1, hour: Int = -1, minute: Int = -1, second: Int = -1, millisecond: Int = -1): Date
+
fun Date.with(weekday: Int = -1): Date
fun Date.with(year: Int = -1, month: Int = -1, day: Int = -1, hour: Int = -1, minute: Int = -1, second: Int = -1, millisecond: Int = -1): Date
@@ -2216,7 +2216,7 @@

Functions

-
fun Date.year(): Int
+
fun Date.year(): Int
@@ -2231,7 +2231,7 @@

Functions

- +
@@ -2246,7 +2246,7 @@

Functions

- +
diff --git a/dateTime/dev.funkymuse.datetime/is-date-same-day.html b/dateTime/dev.funkymuse.datetime/is-date-same-day.html index f355f9674..34b1e46e0 100644 --- a/dateTime/dev.funkymuse.datetime/is-date-same-day.html +++ b/dateTime/dev.funkymuse.datetime/is-date-same-day.html @@ -63,7 +63,7 @@

isDateSameDay

-
fun Date.isDateSameDay(compareDate: Date): Boolean
+
fun Date.isDateSameDay(compareDate: Date): Boolean
-
fun Date.toDateTime(): DateTime

Convert Date to DateTime

fun String.toDateTime(pattern: String? = null): DateTime?

Parse string to DateTime

+
fun Date.toDateTime(): DateTime

Convert Date to DateTime

fun String.toDateTime(pattern: String? = null): DateTime?

Parse string to DateTime

@@ -1912,7 +1912,7 @@

Functions

-
fun Date.toLocalDate(): LocalDate

Convert Date to LocalDate

fun String.toLocalDate(pattern: String? = null): LocalDate?

Parse string to LocalDate

+
fun Date.toLocalDate(): LocalDate

Convert Date to LocalDate

fun String.toLocalDate(pattern: String? = null): LocalDate?

Parse string to LocalDate

@@ -1927,7 +1927,7 @@

Functions

-
fun Date.toLocalDateTime(): LocalDateTime

Convert Date to LocalDateTime

+
fun Date.toLocalDateTime(): LocalDateTime

Convert Date to LocalDateTime

@@ -1942,7 +1942,7 @@

Functions

-
fun Date.toLocalTime(): LocalTime

Convert Date to LocalTime

fun String.toLocalTime(pattern: String? = null): LocalTime?

Parse string to LocalTime

+
fun Date.toLocalTime(): LocalTime

Convert Date to LocalTime

fun String.toLocalTime(pattern: String? = null): LocalTime?

Parse string to LocalTime

@@ -1987,7 +1987,7 @@

Functions

-
fun DateTime.toTimestamp(): Timestamp

Convert DateTime to Timestamp

+
fun DateTime.toTimestamp(): Timestamp

Convert DateTime to Timestamp

diff --git a/jodaDateTime/dev.funkymuse.jodadatetime/to-date-time.html b/jodaDateTime/dev.funkymuse.jodadatetime/to-date-time.html index eb9305349..675019c3c 100644 --- a/jodaDateTime/dev.funkymuse.jodadatetime/to-date-time.html +++ b/jodaDateTime/dev.funkymuse.jodadatetime/to-date-time.html @@ -63,7 +63,7 @@

toDateTime

-
fun Date.toDateTime(): DateTime

Convert Date to DateTime


fun String.toDateTime(pattern: String? = null): DateTime?

Parse string to DateTime

+
fun Date.toDateTime(): DateTime

Convert Date to DateTime


fun String.toDateTime(pattern: String? = null): DateTime?

Parse string to DateTime

- +
@@ -131,7 +131,7 @@

Functions

-
infix fun Locale.equals(locale: Locale): Boolean
+
infix fun Locale.equals(locale: Locale): Boolean
@@ -146,7 +146,7 @@

Functions

- +
@@ -161,7 +161,7 @@

Functions

-
fun Context.getLocalizedString(requestedLocale: Locale, resourceId: Int): String
+
fun Context.getLocalizedString(requestedLocale: Locale, resourceId: Int): String
diff --git a/math/dev.funkymuse.math/-math-utils/-companion/index.html b/math/dev.funkymuse.math/-math-utils/-companion/index.html index 86f8acd94..01b63a65f 100644 --- a/math/dev.funkymuse.math/-math-utils/-companion/index.html +++ b/math/dev.funkymuse.math/-math-utils/-companion/index.html @@ -244,7 +244,7 @@

Properties

- +
diff --git a/math/dev.funkymuse.math/-math-utils/-companion/rand-int.html b/math/dev.funkymuse.math/-math-utils/-companion/rand-int.html index 918baafa5..652b33dc9 100644 --- a/math/dev.funkymuse.math/-math-utils/-companion/rand-int.html +++ b/math/dev.funkymuse.math/-math-utils/-companion/rand-int.html @@ -63,7 +63,7 @@

randInt

-
fun randInt(min: Int, max: Int): Int

Returns a pseudo-random number between min and max, inclusive. The difference between min and max can be at most Integer.MAX_VALUE - 1.

Return

Integer between min and max, inclusive.

Parameters

min

Minimum value

max

Maximum value. Must be greater than min.

See also

+
fun randInt(min: Int, max: Int): Int

Returns a pseudo-random number between min and max, inclusive. The difference between min and max can be at most Integer.MAX_VALUE - 1.

Return

Integer between min and max, inclusive.

Parameters

min

Minimum value

max

Maximum value. Must be greater than min.

See also

-
fun Double.format(pattern: String): String
fun Double.format(pattern: String, roundingMode: RoundingMode): String
fun Double.format(pattern: String, groupingSeperator: Char): String
fun Double.format(pattern: String, init: DecimalFormat.() -> Unit): String
+
fun Double.format(pattern: String): String
fun Double.format(pattern: String, roundingMode: RoundingMode): String
fun Double.format(pattern: String, groupingSeperator: Char): String
fun Double.format(pattern: String, init: DecimalFormat.() -> Unit): String