Skip to content

Commit c9741d4

Browse files
authored
Merge pull request #219 from TheBlueMatt/master
Expose the underlying array in addition to a ptr to the same
2 parents a5147bb + 0052bc9 commit c9741d4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

secp256k1-sys/src/macros.rs

+7
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ macro_rules! impl_array_newtype {
3434
dat.as_mut_ptr()
3535
}
3636

37+
#[inline]
38+
/// Gets a reference to the underlying array
39+
pub fn as_ref(&self) -> &[$ty; $len] {
40+
let &$thing(ref dat) = self;
41+
dat
42+
}
43+
3744
#[inline]
3845
/// Returns the length of the object as an array
3946
pub fn len(&self) -> usize { $len }

0 commit comments

Comments
 (0)