OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:internerfunction
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java
92
Function<String, String>
internerFunction
=
95
assertSame(canonical,
internerFunction
.apply(canonical));
96
assertSame(canonical,
internerFunction
.apply(not));
/external/guava/guava/src/com/google/common/collect/
Interners.java
112
return new
InternerFunction
<E>(checkNotNull(interner));
115
private static class
InternerFunction
<E> implements Function<E, E> {
119
public
InternerFunction
(Interner<E> interner) {
132
if (other instanceof
InternerFunction
<?>) {
133
InternerFunction
<?> that = (
InternerFunction
<?>) other;
Completed in 59 milliseconds