pd.Series.all¶ pandas.Series.all(axis=0, bool_only=None, skipna=True, level=None) Supported Arguments None¶ Note Bodo does not accept any additional arguments for Numpy compatibility Example Usage¶ >>> @bodo.jit ... def f(S): ... return S.all() >>> S = pd.Series(np.arange(100)) % 7 >>> f(S) False