@JvmName("byteArrayHasSize") fun Assert<ByteArray>.hasSize(size: Int): Unit
Asserts the ByteArray has the expected size.
(common, jvm)@JvmName("intArrayHasSize") fun Assert<IntArray>.hasSize(size: Int): Unit
Asserts the IntArray has the expected size.
(common, jvm)@JvmName("shortArrayHasSize") fun Assert<ShortArray>.hasSize(size: Int): Unit
Asserts the ShortArray has the expected size.
(common, jvm)@JvmName("longArrayHasSize") fun Assert<LongArray>.hasSize(size: Int): Unit
Asserts the LongArray has the expected size.
(common, jvm)@JvmName("floatArrayHasSize") fun Assert<FloatArray>.hasSize(size: Int): Unit
Asserts the FloatArray has the expected size.
(common, jvm)@JvmName("doubleArrayHasSize") fun Assert<DoubleArray>.hasSize(size: Int): Unit
Asserts the DoubleArray has the expected size.
(common, jvm)@JvmName("charArrayHasSize") fun Assert<CharArray>.hasSize(size: Int): Unit
Asserts the CharArray has the expected size.
(common, jvm)fun Assert<Array<*>>.hasSize(size: Int): Unit
Asserts the array has the expected size.
(common, jvm)fun Assert<Collection<*>>.hasSize(size: Int): Unitfun Assert<Map<*, *>>.hasSize(size: Int): Unit
Asserts the collection has the expected size.