Returns value of a track variable.
gtrack.var.get(track = NULL, var = NULL)
Track variable value.
This function returns the value of a track variable. If the variable does not exist an error is reported.
gdb.init_examples()
gtrack.var.set("sparse_track", "test_var", 1:10)
gtrack.var.get("sparse_track", "test_var")
#> [1] 1 2 3 4 5 6 7 8 9 10
gtrack.var.rm("sparse_track", "test_var")