on Each Success
inline fun <T> KotlinResultFlow<T>.onEachSuccess(crossinline action: suspend (T) -> Unit): KotlinResultFlow<T>
Invokes action with the unwrapped success value before each successful element is emitted downstream. Failures pass through unaffected.