OutputVar := instance.BitAnd(value)
Performs logical AND operation current instance bits and value bits.
value
The value to logically AND bits with current instance.
Can be any type that matches IsNumber ,instance of MfUInt64. or Instance of MfBigInt.
If ReturnAsObject is true then returns current instance of MfUInt64 with an updated Value; Otherwise returns Value as var.
Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfArgumentOutOfRangeException if value bit count is greater then 64 bits.
Throws MfException for any other errors during the operation.
AutoHotkey has a integer upper limit of MfInt64.MaxValue. MfUInt64 can have greater values up to MfUInt.MaxValue. For this reason preforming bitwise operations in the standard AutoHotkey way by using <<, >>, &, ^, | operates will not work on on MfUInt64 values.
Int := new MfInt64(123456789)
UInt := new MfUInt64("77444564454564646", true)
UInt.BitAnd(Int)
MsgBox % UInt.Value ; 35209476