Example #1
0
 public ZincTypeInstance(ZincType type, ZincInstance instance = ZincInstance.Parameter) : this(instance, type)
 {
 }
Example #2
0
 public ZincTypeInstance(ZincInstance instance, ZincType type)
 {
     this.data = (((ulong)instance) << 0x3f) | type.Data;
 }
Example #3
0
 public ZincTypeInstance(ZincType type, ZincInstance instance = ZincInstance.Parameter)
     : this(instance,type)
 {
 }
Example #4
0
 public ZincTypeInstance(ZincInstance instance, ZincType type)
 {
     this.data = (((ulong)instance) << 0x3f) | type.Data;
 }
Example #5
0
        public ZincType(ZincCompound compound, ZincType type)
        {
            ulong low = type.data % 0x03;

            this.data = low + 0x03 * (type.data - low + (byte)compound);
        }
Example #6
0
 public ZincType(ZincCompound compound, ZincType type)
 {
     ulong low = type.data % 0x03;
     this.data = low + 0x03 * (type.data - low + (byte)compound);
 }