當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust BuildHasher.hash_one用法及代碼示例


本文簡要介紹rust語言中 core::hash::BuildHasher.hash_one 的用法。

用法

fn hash_one<T: Hash>(&self, x: T) -> u64 where    Self: Sized,

計算單個值的哈希值。

這是為了方便代碼消耗哈希,例如哈希表的實現或在檢查自定義是否存在的單元測試中core::hash::Hash實現的行為符合預期。

這不能在任何代碼中使用創造哈希值,例如在實現中core::hash::Hash。創建多個值的組合哈希的方法是調用core::hash::Hash.hash多次使用相同的core::hash::Hasher,不要重複調用此方法並合並結果。

示例

#![feature(build_hasher_simple_hash_one)]

use std::cmp::{max, min};
use std::hash::{BuildHasher, Hash, Hasher};
struct OrderAmbivalentPair<T: Ord>(T, T);
impl<T: Ord + Hash> Hash for OrderAmbivalentPair<T> {
    fn hash<H: Hasher>(&self, hasher: &mut H) {
        min(&self.0, &self.1).hash(hasher);
        max(&self.0, &self.1).hash(hasher);
    }
}

// Then later, in a `#[test]` for the type...
let bh = std::collections::hash_map::RandomState::new();
assert_eq!(
    bh.hash_one(OrderAmbivalentPair(1, 2)),
    bh.hash_one(OrderAmbivalentPair(2, 1))
);
assert_eq!(
    bh.hash_one(OrderAmbivalentPair(10, 2)),
    bh.hash_one(&OrderAmbivalentPair(2, 10))
);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 core::hash::BuildHasher.hash_one。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。