Exemple #1
0
        void ShowBitSeq(N5 n, ShowLog dst)
        {
            var bits = BitSeq.bits(n);

            dst.Show($"n={n}, count={bits.Length}");
            dst.Show(RP.PageBreak120);
            root.iter(bits, s => dst.Buffer.AppendFormat("{0} ", s.Format()));
            dst.ShowBuffer();
        }
Exemple #2
0
 public static BitBlock <BitBlock5> ToBitBlock(this BitString src, N5 n)
 => BitBlock.FromSpan <BitBlock5>(src.BitSeq);