AtCoder.Internal.InternalBitTest.ExtractLowestSetBit C# (CSharp) Method

ExtractLowestSetBit() private method

private ExtractLowestSetBit ( int input, uint expected ) : void
input int
expected uint
return void
        public void ExtractLowestSetBit(int input, uint expected)
        {
            InternalBit.ExtractLowestSetBit(input).Should().Be(expected);
            (input & -input).Should().Be((int)expected);
        }