Compact Scope
class CompactScope
Functions
Link copied to clipboard
fun <T> data(values: Iterable<T>, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndex: Long, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
fun <T> data(values: Iterable<T>, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndexes: List<Long>? = null, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
fun <T> data(values: <Error class: unknown class><T>, limit: Long? = null, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndex: Long, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
fun <T> data(values: <Error class: unknown class><T>, limit: Long? = null, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndexes: List<Long>? = null, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
fun <T> data(name: String, values: Iterable<T>, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndex: Long, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
fun <T> data(name: String, values: Iterable<T>, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replayIndexes: List<Long>? = null, config: DataLayerConfigBuilder.() -> Unit = {}): CompactDataLayer<T>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> property(gen: Gen<T>, iterations: Int = matrixConfig.defaultPropertyIterations, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replay: ReplayInput, config: PropertyLayerConfigBuilder.() -> Unit = {}): CompactPropertyLayer<T>
fun <T> property(gen: Gen<T>, iterations: Int = matrixConfig.defaultPropertyIterations, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replays: List<ReplayInput>? = null, config: PropertyLayerConfigBuilder.() -> Unit = {}): CompactPropertyLayer<T>
fun <T> property(name: String, gen: Gen<T>, iterations: Int = matrixConfig.defaultPropertyIterations, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replay: ReplayInput, config: PropertyLayerConfigBuilder.() -> Unit = {}): CompactPropertyLayer<T>
fun <T> property(name: String, gen: Gen<T>, iterations: Int = matrixConfig.defaultPropertyIterations, nameFn: NameFn<T> = { index, value -> defaultLayerName(index, value) }, replays: List<ReplayInput>? = null, config: PropertyLayerConfigBuilder.() -> Unit = {}): CompactPropertyLayer<T>
Link copied to clipboard