dot

From The K Language Wiki
Revision as of 01:29, 9 July 2022 by Promovicz (talk | contribs) ("Remove lowercase again - it is in the template now")
Dot
f.y

dot or dot-apply is used to apply a list of arguments to a function.

If all required arguments are not given, dot returns a partially applied function.

 {x+y}.2 3
5

 {x+y}.,2
{x+y}[2]