AftGangAglay Documentation


bitor

Parameters

Parameter Type Description
args int[] A list of ints

Return Value

Type Description
int The result of the operation

Description

Performs the operation a | b | c ... between all elements in args and returns the result.

Example

import agan

class game():
	def create(self):
		agan.log(agan.bitor([ 1, 2, 16, 128 ]))
		return self
	#
	def update(self):
		pass
	#
	def close(self):
		pass