mirror of
https://github.com/penpot/penpot.git
synced 2025-06-08 02:51:37 +02:00
🔧 Parse text leaves all at once
This commit is contained in:
parent
18dea6c3a3
commit
83f72f3e41
8 changed files with 457 additions and 117 deletions
|
@ -14,3 +14,7 @@ pub fn uuid_to_u32_quartet(id: &Uuid) -> (u32, u32, u32, u32) {
|
|||
let lolo32 = lo as u32;
|
||||
(hihi32, hilo32, lohi32, lolo32)
|
||||
}
|
||||
|
||||
pub fn uuid_from_u32(id: [u32; 4]) -> Uuid {
|
||||
uuid_from_u32_quartet(id[0], id[1], id[2], id[3])
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue