Skip to content

Commit 5c6a26f

Browse files
committedJul 28, 2024
refactor: Rename power_of_two -> from_byte_array
1 parent 3df9475 commit 5c6a26f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed
 

‎src/human_encoding/parse/mod.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -754,13 +754,16 @@ mod tests {
754754
("0b11111111", Value::u8(0b11111111)),
755755
(
756756
"0b00000001001000110100010101100111",
757-
Value::power_of_two([0b00000001, 0b00100011, 0b01000101, 0b01100111]),
757+
Value::from_byte_array([0b00000001, 0b00100011, 0b01000101, 0b01100111]),
758758
),
759759
("0x0", Value::u4(0x0)),
760760
("0xf", Value::u4(0xf)),
761761
("0x00", Value::u8(0x00)),
762762
("0xff", Value::u8(0xff)),
763-
("0xdeadbeef", Value::power_of_two([0xde, 0xad, 0xbe, 0xef])),
763+
(
764+
"0xdeadbeef",
765+
Value::from_byte_array([0xde, 0xad, 0xbe, 0xef]),
766+
),
764767
];
765768

766769
for (human, value) in human_values {

‎src/value.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,20 +180,20 @@ impl Value {
180180

181181
/// Create a value from 32 bytes.
182182
pub fn u256(bytes: [u8; 32]) -> Arc<Self> {
183-
Value::power_of_two(bytes)
183+
Value::from_byte_array(bytes)
184184
}
185185

186186
/// Create a value from 64 bytes.
187187
pub fn u512(bytes: [u8; 64]) -> Arc<Self> {
188-
Value::power_of_two(bytes)
188+
Value::from_byte_array(bytes)
189189
}
190190

191191
/// Create a value from a byte array.
192192
///
193193
/// ## Panics
194194
///
195195
/// The array length is not a power of two.
196-
pub fn power_of_two<const N: usize>(bytes: [u8; N]) -> Arc<Self> {
196+
pub fn from_byte_array<const N: usize>(bytes: [u8; N]) -> Arc<Self> {
197197
assert!(N.is_power_of_two(), "Array length must be a power of two");
198198
let mut values: VecDeque<_> = bytes.into_iter().map(Value::u8).collect();
199199

0 commit comments

Comments
 (0)