lang::util::localize_list_of_lists (public)

 lang::util::localize_list_of_lists [ -list list ]

Defined in packages/acs-lang/tcl/lang-util-procs.tcl

localize the elements of a list_of_lists

Switches:
-list
(optional)

Partial Call Graph (max 5 caller/called nodes):
%3 test_test_localize_list_of_lists test_localize_list_of_lists (test acs-lang) lang::util::localize_list_of_lists lang::util::localize_list_of_lists test_test_localize_list_of_lists->lang::util::localize_list_of_lists lang::util::localize lang::util::localize (public) lang::util::localize_list_of_lists->lang::util::localize template::data::transform::party_search template::data::transform::party_search (private) template::data::transform::party_search->lang::util::localize_list_of_lists

Testcases:
test_localize_list_of_lists
Source code:
    set list_output [list]
    foreach item $list {
    set item_output [list]
    foreach part $item {
        lappend item_output [lang::util::localize $part]
    }
    lappend list_output $item_output
    }
    return $list_output
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/acs-lang/tcl/lang-util-procs.xql

[ hide source ] | [ make this the default ]
Show another procedure: