Skip to main content
Module

x/combinatorics/test_deps.ts>assertNotStrictEquals

🦕 Combinatorial generators including combinations, permutations, combinations with replacement, permutations with replacement, cartesian products, and power sets.
Latest
function assertNotStrictEquals
import { assertNotStrictEquals } from "https://deno.land/x/combinatorics@1.1.2/test_deps.ts";

Make an assertion that actual and expected are not strictly equal. If the values are strictly equal then throw.

import { assertNotStrictEquals } from "./asserts.ts";

assertNotStrictEquals(1, 1)

Parameters

actual: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string