strikt-core / strikt.assertions / contentEquals

contentEquals

infix fun <T> Builder<Array<out T>>.contentEquals(other: Array<out T>): Builder<Array<out T>>

Asserts that the subject's content is equal to that of other according to Array.contentEquals.

infix fun Builder<BooleanArray>.contentEquals(other: BooleanArray): Builder<BooleanArray>

Asserts that the subject's content is equal to that of other according to BooleanArray.contentEquals.

infix fun Builder<ByteArray>.contentEquals(other: ByteArray): Builder<ByteArray>

Asserts that the subject's content is equal to that of other according to ByteArray.contentEquals.

infix fun Builder<ShortArray>.contentEquals(other: ShortArray): Builder<ShortArray>

Asserts that the subject's content is equal to that of other according to ShortArray.contentEquals.

infix fun Builder<IntArray>.contentEquals(other: IntArray): Builder<IntArray>

Asserts that the subject's content is equal to that of other according to IntArray.contentEquals.

infix fun Builder<LongArray>.contentEquals(other: LongArray): Builder<LongArray>

Asserts that the subject's content is equal to that of other according to LongArray.contentEquals.

infix fun Builder<FloatArray>.contentEquals(other: FloatArray): Builder<FloatArray>

Asserts that the subject's content is equal to that of other according to FloatArray.contentEquals.

infix fun Builder<DoubleArray>.contentEquals(other: DoubleArray): Builder<DoubleArray>

Asserts that the subject's content is equal to that of other according to DoubleArray.contentEquals.

infix fun Builder<CharArray>.contentEquals(other: CharArray): Builder<CharArray>

Asserts that the subject's content is equal to that of other according to CharArray.contentEquals.