Skip to content

Commit

Permalink
Merged in next-release (pull request #1)
Browse files Browse the repository at this point in the history
Updates for 4.4.0 release

Approved-by: Tim Thornton <tthornton@kx.com>
  • Loading branch information
mattmaynes committed Jun 13, 2019
2 parents 179c8b5 + 0fc8f19 commit 73d6337
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kxscm/module/A.Tutorial.Doc/file/walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ it was moved to. To be able to access this data, we need to move the process to
directory. Run the following line to move the the process to the workspace.

```q
system "cd ",.ws.wsDir[];
system "cd ",getenv `AX_WORKSPACE;
```

Data
Expand Down Expand Up @@ -144,7 +144,7 @@ Alternatively, the transformation can be run as a function by invoking the trans
// and the last argument is for the outputs. Providing null for both uses the defaults
// that were configured in the UI. A dictionary can be provided for each input or output
// that maps the name of the node in the UI to a new input or output configuration.
ImportSensors[::;::]
ImportSensors[::;::];
// Example with explicit input and output locations
ImportSensors[
Expand Down
7 changes: 7 additions & 0 deletions kxscm/module/B.Section.Testing/qfn/.kv.add
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// @fileOverview
// Adds a value to the key-value state
//
// @param x {symbol} key of item to store
// @param y {symbol} item to store
// @return {null}
{ .kv.STATE[x]:y }
5 changes: 5 additions & 0 deletions kxscm/module/B.Section.Testing/qfn/.kv.fetch
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// @fileOverview
// Returns the value for a key in the key-value store
// @param x {symbol} key to return item for
// @return {any} item for given key
{ .kv.STATE x }
4 changes: 4 additions & 0 deletions kxscm/module/B.Section.Testing/qfn/.kv.init
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// @fileOverview
// Initializes the key-value backing data store
// @return {null}
{ .kv.STATE:enlist[`]!enlist[::]; }
5 changes: 5 additions & 0 deletions kxscm/module/B.Section.Testing/qfn/.kv.remove
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// @fileOverview
// Removes the value for a given key from the key-value store
// @param x {symbol} key to remove
// @return {null}
{ .kv.STATE: x _ .kv.i.store }

0 comments on commit 73d6337

Please sign in to comment.