correct name of SendMap trait
This commit is contained in:
parent
a605fd0cad
commit
a19dce6c16
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ Sendable hash maps. Very much a work in progress.
|
|||
type HashFn<K> = pure fn~(K) -> uint;
|
||||
type EqFn<K> = pure fn~(K, K) -> bool;
|
||||
|
||||
trait send_map<K, V: copy> {
|
||||
trait SendMap<K, V: copy> {
|
||||
// FIXME(#3148) ^^^^ once find_ref() works, we can drop V:copy
|
||||
|
||||
fn insert(&mut self, +k: K, +v: V) -> bool;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue