OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ArrayTable
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava/src/com/google/common/collect/
ArrayTable.java
70
* access the same cell of an {@code
ArrayTable
} concurrently and one of the
81
public final class
ArrayTable
<R, C, V> implements Table<R, C, V>, Serializable {
84
* Creates an empty {@code
ArrayTable
}.
92
public static <R, C, V>
ArrayTable
<R, C, V> create(
94
return new
ArrayTable
<R, C, V>(rowKeys, columnKeys);
105
* Creates an {@code
ArrayTable
} with the mappings in the provided table.
125
public static <R, C, V>
ArrayTable
<R, C, V> create(Table<R, C, V> table) {
126
return new
ArrayTable
<R, C, V>(table);
130
* Creates an {@code
ArrayTable
} with the same mappings, allowed keys, and
131
* iteration ordering as the provided {@code
ArrayTable
}
[
all
...]
/prebuilts/tools/common/guava-tools/
guava-10.0.1.jar
Completed in 193 milliseconds