blob: d0d4af41eb0cf039ce0877bcd3b047d97e72328e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from typing import List
__all__: List[str]
def sqrt(x): ...
def log(x): ...
def log10(x): ...
def logn(n, x): ...
def log2(x): ...
def power(x, p): ...
def arccos(x): ...
def arcsin(x): ...
def arctanh(x): ...
|