AftGangAglay Documentation


bitand

Parameters

Parameter Type Description
lhs int The left hand side of the operation
rhs int The right hand side of the operation

Return Value

Type Description
int The result of the operation

Description

Performs the operation a & b and returns the result.

Example

import agan

class game():
	def create(self):
		agan.log(agan.bitand(5, 4))
		return self
	#
	def update(self):
		pass
	#
	def close(self):
		pass