Operator: &

  • operator & {
  •                  associativity left
  •                  precedence
  •                  }

Declarations

func &(_: Int, rhs: Int)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: Int8, rhs: Int8)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: Int16, rhs: Int16)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: Int32, rhs: Int32)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: Int64, rhs: Int64)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: UInt, rhs: UInt)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: UInt8, rhs: UInt8)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: UInt16, rhs: UInt16)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: UInt32, rhs: UInt32)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration

func &(_: UInt64, rhs: UInt64)

Returns the intersection of bits set in the two arguments.

See Also: BitwiseOperations

Declaration