Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-15 10:33:05 +03:00
parent 7d9c12f1bc
commit 690318cd8d
10 changed files with 80 additions and 65 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.utils
/**
* Provider for suspend lazy initialization
*
* @param action initialization action
*
[REDACTED_AUTHOR]
*/
class ProviderSuspend<T>(action: suspend () -> T) : suspend () -> T by action