示例#1
0
文件: __m512.cs 项目: 0xCM/arrows
        public           Bit this[Index r]
        {
            [MethodImpl(Inline)]
            get
            {
                var pos = CellIndex <ulong> .FromIndex((uint)r.Value);

                return(part <ulong>(pos.Segment).TestBit(pos.Offset));
            }
        }