using Numbers
Using numbers matcher.
----------------使用数字列表匹配器。
usingNumbers(NumberEncodeValueMatcherList().add(NumberEncodeValueMatcher().value(114514)))
Content copied to clipboard
Return
Parameters
using Numbers
using numbers matcher / 使用数字列表匹配器
Using numbers matcher. To avoid floating point precision error, the number is considered equal when the value error is less than 1e-6.
使用数字匹配器。为了避免浮点精度误差,数值误差小于 1e-6 时会被判定为相等。
usingNumbers(listOf(0.01, -1, 0.987, 0, 114514))
Content copied to clipboard
Return
Parameters
using Numbers
using numbers / 使用数字列表
Using numbers matcher. To avoid floating point precision error, the number is considered equal when the value error is less than 1e-6.
使用数字匹配器。为了避免浮点精度误差,数值误差小于 1e-6 时会被判定为相等。
usingNumbers(0.01, -1, 0.987, 0, 114514)
Content copied to clipboard
Return
Parameters
using Numbers
using numbers / 使用数字列表
See also
This method using numbers. To avoid floating point precision error, the number is considered equal when the value error is less than 1e-6.
该方法使用的数字。为了避免浮点精度误差,数值误差小于 1e-6 时会被判定为相等。
usingNumbers = listOf(0.01, -1, 0.987, 0, 114514)
Content copied to clipboard