The list of constraints (index 2) is itself a parse tree which means
value cannot be applied to the output of parse. For a simple example
like this, it's just a matter of removing a level of nesting but just to
illustrate.... (btw, your example has a...
Yes it's expected as the first process is in debug mode -
https://code.kx.com/q/basics/debug/#debugger However, you don't need to
restart the first process, you can resume or abort execution from the
debugger depending on your use case. The sync mess...
sum (+/) has special handling if/when type promotion is necessaryx+/y
will go to the general case when there is a type mismatch between x and
items of y this may be fixed in future version
Because of implicit type promotion -
https://code.kx.com/q4m3/4_Operators/#44-basic-arithmetic- So something
like 0+/111b has the below intermediate operations 0 + 1b = 1 (type
promotion to long) 1 + 1b = 2 (type promotion to long) 2 + 1b = 3 (type
p...