diff options
author | Luke Holmes <36161628+lukeholmescodes@users.noreply.github.com> | 2024-05-13 13:18:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 06:18:05 -0600 |
commit | 4bf3759c17cc03e8588309d93dc0fea1571dc668 (patch) | |
tree | acbb5509f9481eb17286b86d3a6d916361e2a1af /kdb+.html.markdown | |
parent | bd5b3fb3924684fbc80ba95520ea8fd1b0e0b76b (diff) |
[kdb+/en] Update KX links (#4569)
Diffstat (limited to 'kdb+.html.markdown')
-rw-r--r-- | kdb+.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdb+.html.markdown b/kdb+.html.markdown index 0573067d..2c8c83fa 100644 --- a/kdb+.html.markdown +++ b/kdb+.html.markdown @@ -74,7 +74,7 @@ floor 3.14159 / => 3 / ...getting the absolute value... abs -3.14159 / => 3.14159 / ...and many other things -/ see http://code.kx.com/q/ref/card/ for more +/ see http://code.kx.com/q/ref/ for more / q has no operator precedence, everything is evaluated right to left / so results like this might take some getting used to @@ -713,8 +713,8 @@ first each (1 2 3;4 5 6;7 8 9) {x + y}\[1 2 3 4 5] / => 1 3 6 10 15 (i.e. the running sum) {x + y}/[1 2 3 4 5] / => 15 (only the final result) -/ There are other adverbs and uses, this is only intended as quick overview -/ http://code.kx.com/q4m3/6_Functions/#67-adverbs +/ There are other iterators and uses, this is only intended as quick overview +/ http://code.kx.com/q4m3/6_Functions/#67-iterators ////// Scripts ////// / q scripts can be loaded from a q session using the "\l" command |