Functionsยง
- assert
- Assert that a statement is true and throw an error if it is not.
- assert_
approx_ eq - Assert that two floats are approximately equal (within
eps) and return an error if they are not. - assert_
approx_ eq_ list - Assert that two arrays are approximately equal (within
eps) and return an error if they are not. - assert_
approx_ eq_ list_ with_ default - Assert that two arrays are approximately equal and return an error if they are not. Use the default tolerance of 1e-10 for the comparison.
- assert_
approx_ eq_ with_ default - Assert that two floats are approximately equal and return an error if they are not. Use the default tolerance of 1e-10 for the comparison.
- assert_
eq - Assert that two arguments are equal and throw an error if they are not.
- assert_
ne - Assert that two arguments are unequal and throw an error if they are not.