lazyFast

fun <T> lazyFast(operation: () -> T): Lazy<T>

Implementation of lazy that is not thread safe. Useful when you know what thread you will be executing on and are not worried about synchronization.