GSF.BitMath.GetClearedBitPositions C# (CSharp) Method

GetClearedBitPositions() public static method

Returns the bit position for every bit that is cleared in the provided value. Bit positions are defined as 0-31;
public static GetClearedBitPositions ( uint value ) : IEnumerable
value uint
return IEnumerable
        public static IEnumerable<int> GetClearedBitPositions(uint value)
        {
            return GetSetBitPositions(~value);
        }

Same methods

BitMath::GetClearedBitPositions ( ulong value ) : IEnumerable