Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-24 15:10:02 +04:00
parent 7c807bcf37
commit 96076bfa26
64 changed files with 63 additions and 67 deletions

View file

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