invoke

@JvmName(name = "create")
inline operator fun <T> invoke(tablePath: Path, columnPath: Path): ComputedValue<T>(source)
@JvmName(name = "create")
inline operator fun <T> invoke(tablePath: String, columnPath: String): ComputedValue<T>(source)

Creates a new SumOf computed value adding up the values of the column at columnPath of the table at tablePath.


@JvmName(name = "create")
inline operator fun <T> invoke(tablePath: Path, columnProperty: KMutableProperty1<*, *>): ComputedValue<T>(source)
@JvmName(name = "create")
inline operator fun <T> invoke(tablePath: String, columnProperty: KMutableProperty1<*, *>): ComputedValue<T>(source)

Creates a new SumOf computed value adding up the values of column columnProperty of the table at tablePath.