We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MultiMap.get()
1 parent 5dc8ae3 commit bb9a8f8Copy full SHA for bb9a8f8
src/main/java/pascal/taie/util/collection/MultiMap.java
@@ -82,6 +82,11 @@ public interface MultiMap<K, V> {
82
* @return an unmodifiable view of the values associated with {@code key}
83
* in this multimap, if {@code key} is absent; otherwise, this returns
84
* an empty set.
85
+ * <p>
86
+ * <strong>Note:</strong> The returned set may not have the same type as
87
+ * the underlying set used in this multimap. This may cause performance
88
+ * degradation for specialized sets such as {@link GenericBitSet}.
89
+ * See {@link GenericBitSet#addAll(Collection)}.
90
*/
91
Set<V> get(K key);
92
0 commit comments