Skip to content

isclose

relationalai.semantics.std.math
isclose(
x: NumberValue, y: NumberValue, tolerance: NumberValue = 1e-09
) -> Expression

Check if two values are approximately equal within a tolerance.

  • Expression - An Expression that evaluates to true if abs(x - y) < tolerance.