(Function<? super T, V> function)
| 76 | } |
| 77 | |
| 78 | @Override |
| 79 | public <V> Optional<V> transform(Function<? super T, V> function) { |
| 80 | checkNotNull(function); |
| 81 | return Optional.absent(); |
| 82 | } |
| 83 | |
| 84 | @Override |
| 85 | public boolean equals(@Nullable Object object) { |
no test coverage detected