Commit d8895701 authored by Snigdha Saha's avatar Snigdha Saha
Browse files

Update ITrieMap.java

parent 79427f87
No related merge requests found
Pipeline #78713 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -13,7 +13,7 @@ public interface ITrieMap<A, K extends Iterable<A>, V> extends IDictionary<K, V>
* @param prefix the prefix to search for in the trie
* @return the values corresponding to the keys starting with the given prefix
*/
public IDeque<V> getCompletions(K prefix);
public ICollection<V> getCompletions(K prefix);
/**
* Removes all elements from the trie.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment