miden-protocol 0.14.3

Core components of the Miden protocol
Documentation
1
2
3
4
5
6
7
8
9
use crate::Word;
use crate::account::StorageMapKey;

impl StorageMapKey {
    /// Creates a [`StorageMapKey`] from an array of u32s for testing purposes.
    pub fn from_array(array: [u32; 4]) -> Self {
        Self::from_raw(Word::from(array))
    }
}