natix.CompactDS.SeqXLB.GetNotIdxPERM C# (CSharp) Method

GetNotIdxPERM() public method

public GetNotIdxPERM ( ) : IList
return IList
        public IList<int> GetNotIdxPERM()
        {
            long n = this.Count;
            var gen = new ListGen<int> (delegate(int i) {
                return (int)(this.xl_bitmap.Select1 (i + 1) % n);
            }, (int)n);
            return gen;
        }