Avro.Util.Zig C# (CSharp) Method

Zig() public static method

public static Zig ( int value ) : uint
value int
return uint
        public static uint Zig(int value)
        {
            return (uint)((value << 1) ^ (value >> 31));
        }
        public static ulong Zig(long value)

Same methods

Util::Zig ( long value ) : ulong