Union Operator Type Hint

Union Operator for Type Hints

def add(x: int | float, y: int | float):
	return x + y

Backlinks