Functions | |
def | allclose (a_list, b_list, rel_tol=1e-05, abs_tol=0.0) |
def | isclose (a, b, rel_tol=1e-05, abs_tol=0.0) |
def | test_generalized_iterators () |
def | test_iterator_passthrough () |
def | test_iterator_rvp () |
def | test_map_iterator () |
def | test_python_iterator_in_cpp () |
def | test_sequence () |
def | test_sequence_length () |
def | test_sliceable () |
def test_sequences_and_iterators.allclose | ( | a_list, | |
b_list, | |||
rel_tol = 1e-05 , |
|||
abs_tol = 0.0 |
|||
) |
Definition at line 12 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.isclose | ( | a, | |
b, | |||
rel_tol = 1e-05 , |
|||
abs_tol = 0.0 |
|||
) |
Like math.isclose() from Python 3.5
Definition at line 7 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_generalized_iterators | ( | ) |
Definition at line 16 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_iterator_passthrough | ( | ) |
#181: iterator passthrough did not compile
Definition at line 178 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_iterator_rvp | ( | ) |
#388: Can't make iterators via make_iterator() with different r/v policies
Definition at line 185 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_map_iterator | ( | ) |
Definition at line 123 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_python_iterator_in_cpp | ( | ) |
Definition at line 146 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_sequence | ( | ) |
Definition at line 50 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_sequence_length | ( | ) |
#2076: Exception raised by len(arg) should be propagated
Definition at line 104 of file test_sequences_and_iterators.py.
def test_sequences_and_iterators.test_sliceable | ( | ) |
Definition at line 37 of file test_sequences_and_iterators.py.