If the input of the preceding shard is true, the flow continues; otherwise, the flow stops. This shard is typically used within conditional flows (e.g., If, When) to chain conditions. Note: Outside a conditional flow, it might restart the current wire, which can be used as a trick in certain scenarios.
5 = x
x
If(Predicate: {IsMore(1) | And | IsLess(10)} Then: {
Log("Value is more than 1 and less than 10")
} Else: {
Log("Value is not more than 1 and less than 10")
}
)