Skip to content

utils

add(a, b)

Add two numbers.

Parameters:

Name Type Description Default
a float

First number.

required
b float

Second number.

required

Returns:

Type Description
float

Sum of the two numbers.

Source code in py_rust/python/bitbazaar_rs/utils.pyi
def add(a: float, b: float) -> float:
    """Add two numbers.

    Args:
        a: First number.
        b: Second number.

    Returns:
        Sum of the two numbers.
    """
    ...

Last update: August 7, 2024
Created: August 7, 2024