test_eq

test_eq :: fn { str_eq; s64_eq; u64_eq; f32_eq; f64_eq; ptr_eq; }

Overloads

fn (got: string, expected: string, loc := #call_location)
fn (got: s64, expected: s64, loc := #call_location)
fn (got: u64, expected: u64, loc := #call_location)
fn (got: f32, expected: f32, loc := #call_location)
fn (got: f64, expected: f64, loc := #call_location)
fn (got: *u8, expected: *u8, loc := #call_location)

Test whether got value is equal to expected value.

Declared in: test.bl