BitAnd()

Namespace ›› System ›› MfUInt64 ›› Methods ››
Parent Previous Next

BitAnd()

OutputVar := instance.BitAnd(value)

BitAnd(value)

Performs logical AND operation current instance bits and value bits.

Parameters

value

The  value to logically AND bits with current instance.
Can be any type that matches IsNumber ,instance of MfUInt64. or Instance of MfBigInt.

Returns

If ReturnAsObject is true then returns current instance of MfUInt64 with an updated Value; Otherwise returns Value as var.

Throws

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.

Remarks

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.

Example

Int := new MfInt64(123456789)
UInt := new MfUInt64("77444564454564646", true)
UInt.BitAnd(Int)
MsgBox % UInt.Value ; 35209476