It will be easier for users from C/C++ to use type hint of Python if Bython supports the conversion from C-style type declaration to Python type hint. For example:
C-style type declaration:
int add(int x, int y) {
return x + y;
}
Python type hint:
def add(x: int, y: int) -> int:
return x + y
It will be easier for users from C/C++ to use type hint of Python if Bython supports the conversion from C-style type declaration to Python type hint. For example:
C-style type declaration:
Python type hint: