UUID.short constructor

UUID.short(
  1. int shortValue
)

Implementation

UUID.short(int shortValue)
  : value = [
      (shortValue >> 24) & 0xff,
      (shortValue >> 16) & 0xff,
      (shortValue >> 8) & 0xff,
      (shortValue >> 0) & 0xff,
      0x00,
      0x00,
      0x10,
      0x00,
      0x80,
      0x00,
      0x00,
      0x80,
      0x5f,
      0x9b,
      0x34,
      0xfb,
    ];