mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
to_ne_bytes
This commit is contained in:
parent
a48040e2ad
commit
03d5f05226
2 changed files with 3 additions and 3 deletions
|
@ -102,8 +102,8 @@ impl Symbol {
|
|||
}
|
||||
}
|
||||
|
||||
pub const fn to_be_bytes(self) -> [u8; 8] {
|
||||
self.0.to_be_bytes()
|
||||
pub const fn to_ne_bytes(self) -> [u8; 8] {
|
||||
self.0.to_ne_bytes()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue