xo::api proc scope_eval (public)

 xo::api[i] scope_eval scope args [ args... ]

Defined in packages/xotcl-core/tcl/01-debug-procs.tcl

When the scope is not empty, evaluate the command in the specified scope (thread)

Parameters:
scope (required)
args (required)

Testcases:
No testcase defined.
Source code:
#
# When the scope is not empty, evaluate the command in the
# specified scope (thread)
#
if {$scope eq ""} {
  {*}$args
} else {
  $scope do {*}$args
}
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: