Home › Forums › kdb+ › How to understand the meaning of (3#,:) › Re: How to understand the meaning of (3#,:)
-
This is implicit composition (‘). You can see this from the parse tree:
q)parse "(3#,:)" ' (#;3) ,:
In k, the expression ,: corresponds to enlist. This construct is the same as repetition (*) in Python.