Long.NumberOfTrailingZeros(Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the number of zero bits following the lowest-order ("rightmost")
one-bit in the two's complement binary representation of the specified
long
value.
[Android.Runtime.Register("numberOfTrailingZeros", "(J)I", "")]
public static int NumberOfTrailingZeros (long i);
[<Android.Runtime.Register("numberOfTrailingZeros", "(J)I", "")>]
static member NumberOfTrailingZeros : int64 -> int
Parameters
- i
- Int64
the value whose number of trailing zeros is to be computed
Returns
the number of zero bits following the lowest-order ("rightmost")
one-bit in the two's complement binary representation of the
specified long
value, or 64 if the value is equal
to zero.
- Attributes
Remarks
Java documentation for java.lang.Long.numberOfTrailingZeros(long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.