internal ZBlock(FixedArrayComboListPart parent, int zblockID, int addkeybuflen, int addvaluebuflen)
            {
                this.parent = parent;
                this.zblockID = zblockID;

                this.keyblockbuflen = addkeybuflen;
                this.valueblockbuflen = addvaluebuflen;

                fzkeyblockfilename = CreateFileName(zblockID, "key_unsorted");
                fzvalueblockfilename = CreateFileName(zblockID, "value");
                ensurefzblock(false);
            }
 internal ACLLoadOutput(FixedArrayComboListPart acl)
 {
     this.acl = acl;
 }
 internal FixedArrayComboListEnumerator(FixedArrayComboListPart acl, IBeforeReduceFixed plugin)
 {
     this.acl = acl;
     this.input = acl.GetEntriesInput();
     this.output = acl.CreatePluginOutput();
     this.plugin = plugin;
 }