All Stories

Rx - math_concat

Mathematical and aggregate operatorsOperators that operate on the entire sequence of items emitted by an Observable. Concat — emit the emissions from two or more Observables without ...

In tutorial, math_concat, Rx, Jan 23, 2025

Rx - filtering_debounce

Filtering OperatorsOperators that selectively emit items from a source Observable.Debounce — only emit an item from an Observable if a particular timespan has passed without it emitti...

In tutorial, filtering_debounce, Rx, Jan 23, 2025

Rx - error_handling_catch

Error handling operatorsOperators that help to recover from error notifications from an Observable. Catch — recover from an onError notification by continuing the sequence without er...

In tutorial, error_handling_catch, Rx, Jan 23, 2025

Rx - creating_create

Creating OperatorsOperators that originate new Observables. Create — create an Observable from scratch by calling observer methods programmatically; Defer — do not create the Observ...

In tutorial, creating_create, Rx, Jan 23, 2025

Rx - conditional_all

Conditional and Boolean OperatorsOperators that evaluate one or more Observables or items emitted by Observables:All — determine whether all items emitted by an Observable meet some c...

In tutorial, conditional_all, Rx, Jan 23, 2025

Rx - combining_combineLatest

Combining OperatorsOperators that work with multiple source Observables to create a single Observable. CombineLatest — when an item is emitted by either of two Observables, combine t...

In tutorial, combining_combineLatest, Rx, Jan 23, 2025

Kotlin - no_image

val mutableList vs var immutableList

In tutorial, no_image, kotlin, Jan 23, 2025

Kotlin - no_image

Map() vs FlatMap()map() - Returns a list containing the results of applying the given transform function to each element in the original array.val numbers = listOf(1, 2, 3)println(num...

In tutorial, no_image, kotlin, Jan 23, 2025

Kotlin - no_image

Inline class

In tutorial, no_image, kotlin, Jan 23, 2025

Kotlin - no_image

Init block

In tutorial, no_image, kotlin, Jan 23, 2025