Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Functions
SkUUID.h File Reference
#include <cstdint>
#include <cstring>

Go to the source code of this file.

Classes

struct  SkUUID
 

Functions

static bool operator== (const SkUUID &u, const SkUUID &v)
 
static bool operator!= (const SkUUID &u, const SkUUID &v)
 

Function Documentation

◆ operator!=()

static bool operator!= ( const SkUUID u,
const SkUUID v 
)
inlinestatic

Definition at line 16 of file SkUUID.h.

16{ return !(u == v); }

◆ operator==()

static bool operator== ( const SkUUID u,
const SkUUID v 
)
inlinestatic

Definition at line 13 of file SkUUID.h.

13 {
14 return 0 == memcmp(u.fData, v.fData, sizeof(u.fData));
15}
uint8_t fData[16]
Definition SkUUID.h:10