Ejemplo n.º 1
0
 public override void CopyFrom(IntIndexOutputIndex other, bool copyLast)
 {
     fp = ((MockSingleIntIndexOutputIndex)other).fp;
     if (copyLast)
     {
         lastFP = ((MockSingleIntIndexOutputIndex)other).fp;
     }
 }
Ejemplo n.º 2
0
 public override void CopyFrom(IntIndexOutputIndex other, bool copyLast)
 {
     var idx = (IntBlockIndexOuput)other;
     _fp = idx._fp;
     _upto = idx._upto;
     if (copyLast)
     {
         _lastFp = _fp;
         _lastUpto = _upto;
     }
 }
Ejemplo n.º 3
0
        public override void CopyFrom(IntIndexOutputIndex other, bool copyLast)
        {
            var idx = (IntBlockIndexOuput)other;

            _fp   = idx._fp;
            _upto = idx._upto;
            if (copyLast)
            {
                _lastFp   = _fp;
                _lastUpto = _upto;
            }
        }
Ejemplo n.º 4
0
            public override void CopyFrom(IntIndexOutputIndex other, bool copyLast)
            {
                OutputIndex idx = (OutputIndex)other;

                fp   = idx.fp;
                upto = idx.upto;
                if (copyLast)
                {
                    lastFP   = fp;
                    lastUpto = upto;
                }
            }