Package renetik. android. core. lang
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class CSList<T> : ArrayList<T> , CSListInterface<T> , MutableCollection<T> , MutableList<T>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class CSPropertyValidator<T>(val property: CSVariable<T>, val validate: (T) -> Boolean) : CSValidator
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class CSValidatorImplementation(val function: () -> Boolean?) : CSValidator
Content copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchAllErrorReturn(onExceptionReturn: ReturnType, tryFunction: () -> ReturnType): ReturnType
Content copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchAllErrorReturnNull(tryFunction: () -> ReturnType): ReturnType?
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchAllWarnReturn(onExceptionReturn: ReturnType, tryFunction: () -> ReturnType): ReturnType
Content copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchAllWarnReturnNull(message: String? = null, tryFunction: () -> ReturnType): ReturnType?
Content copied to clipboard
Link copied to clipboard
inline fun <ExceptionType : Throwable> catchError(tryFunction: () -> Unit)
Content copied to clipboard
Link copied to clipboard
inline fun <ExceptionType : Throwable, ReturnType> catchErrorReturn(onExceptionReturn: ReturnType, tryFunction: () -> ReturnType): ReturnType
Content copied to clipboard
inline fun <ReturnType, ExceptionType : Throwable> catchErrorReturn(tryFunction: () -> ReturnType, onExceptionReturn: (ExceptionType) -> ReturnType): ReturnType
Content copied to clipboard
Link copied to clipboard
inline fun <ExceptionType : Throwable, ReturnType> catchErrorReturnNull(tryFunction: () -> ReturnType): ReturnType?
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchReturn(tryFunction: () -> ReturnType, onExceptionReturn: (Throwable) -> ReturnType): ReturnType
Content copied to clipboard
Link copied to clipboard
inline fun <ReturnType> catchReturnNull(tryFunction: () -> ReturnType): ReturnType?
Content copied to clipboard
Link copied to clipboard
inline fun <ReturnType, ExceptionType : Throwable> catchWarnReturn(onExceptionReturn: ReturnType, tryFunction: () -> ReturnType): ReturnType
Content copied to clipboard
inline fun <ExceptionType : Throwable, ReturnType> catchWarnReturn( message: String? = null, tryFunction: () -> ReturnType, onExceptionReturn: (ExceptionType) -> ReturnType): ReturnType
Content copied to clipboard
Link copied to clipboard
inline fun <ReturnType, ExceptionType : Throwable> catchWarnReturnNull(tryFunction: () -> ReturnType): ReturnType?
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <ReturnType> tryAndFinally(tryFunction: () -> ReturnType, finally: () -> Unit): ReturnType
Content copied to clipboard