Îõ³h*2 0.1.0.0 Safe-Inferredðõzigzag!Encode a big integer with zigzag.ÌIf you know the size of the data, it is likely more efficient to use one of , , or .zigzag$Decode a zigzag-encoded big ingeter.ÌIf you know the size of the data, it is likely more efficient to use one of , , or .zigzag)Encode a native-size integer with zigzag.In C, this is: .(n << 1) ^ (n >> (CHAR_BIT * sizeof(int) - 1))zigzag,Decode a native-size zigzag-encoded integer.In C, this is: (n >> 1) ^ (~(n & 1) + 1)zigzag$Encode a 32-bit integer with zigzag.In C, this is: (n << 1) ^ (n >> 31)zigzag'Decode a 32-bit zigzag-encoded integer.In C, this is: (n >> 1) ^ (~(n & 1) + 1)zigzag$Encode a 64-bit integer with zigzag.In C, this is: (n << 1) ^ (n >> 63)zigzag'Decode a 64-bit zigzag-encoded integer.In C, this is: (n >> 1) ^ (~(n & 1) + 1)  %zigzag-0.1.0.0-Bx2sqcvLfqv20pmTTea1NGData.Word.ZigzagzigzagtoZigzag fromZigzagtoZigzagNativefromZigzagNative toZigzag32 fromZigzag32 toZigzag64 fromZigzag64