Package-level declarations

Functions

Link copied to clipboard
operator fun <R, C, V> Table.Cell<R, C, V>.component1(): R
Link copied to clipboard
operator fun <R, C, V> Table.Cell<R, C, V>.component2(): C
Link copied to clipboard
operator fun <R, C, V> Table.Cell<R, C, V>.component3(): V
Link copied to clipboard
inline fun <R, C, V> Table<R, C, V>.forEach(action: (R, C, V) -> Unit)
Link copied to clipboard
operator fun <R, C, V> Table<R, C, V>.iterator(): Iterator<Table.Cell<R, C, V>>
Link copied to clipboard
inline fun <R, C, V> Table<R, C, V>.replaceAll(replacer: (R, C, V) -> V)
Link copied to clipboard
operator fun <R, C, V> Table<R, C, V>.set(row: R, column: C, value: V): V?
Link copied to clipboard
fun <R, C, V> Map<R, Map<C, V>>.toTable(table: Table<R, C, V> = HashBasedTable.create()): Table<R, C, V>