apply
NAMESYNOPSIS
DESCRIPTION
EXAMPLES
SEE ALSO
KEYWORDS
___________________________
NAME
apply − Apply an anonymous function
SYNOPSIS
apply func ?arg1 arg2 ...? ___________________________
DESCRIPTION
The command apply applies the function func to the arguments arg1 arg2 ... and returns the result.
The function func is a two element list {args body} or a three element list {args body namespace} (as if the list command had been used). The first element args specifies the formal arguments to func. The specification of the formal arguments args is shared with the proc command, and is described in detail in the corresponding manual page.
The contents of body are executed by the Tcl interpreter after the local variables corresponding to the formal arguments are given the values of the actual parameters arg1 arg2 .... When body is being executed, variable names normally refer to local variables, which are created automatically when referenced and deleted when apply returns. One local variable is automatically created for each of the function’s arguments. Global variables can only be accessed by invoking the global command or the upvar command. Namespace variables can only be accessed by invoking the variable command or the upvar command.
The invocation of apply adds a call frame to Tcl’s evaluation stack (the stack of frames accessed via uplevel). The execution of body proceeds in this call frame, in the namespace given by namespace or in the global namespace if none was specified. If given, namespace is interpreted relative to the global namespace even if its name does not start with “::”.
The semantics of apply can also be described by:
proc apply {fun
args} {
set len [llength $fun]
if {($len < 2) || ($len > 3)} {
error "can’t interpret \"$fun\" as
anonymous function"
}
lassign $fun argList body ns
set name ::$ns::[getGloballyUniqueName]
set body0 {
rename [lindex [info level 0] 0] {}
}
proc $name $argList ${body0}$body
set code [catch {uplevel 1 $name $args} res opt]
return -options $opt $res
}
EXAMPLES
This shows how to make a simple general command that applies a transformation to each element of a list.
proc map
{lambda list} {
set result {}
foreach item $list {
lappend result [apply $lambda $item]
}
return $result
}
map {x {return [string length $x]:$x}} {a bb ccc dddd}
→ 1:a 2:bb 3:ccc 4:dddd
map {x {expr {$x**2 + 3*$x - 2}}} {-4 -3 -2 -1 0 1 2 3 4}
→ 2 -2 -4 -4 -2 2 8 16 26
The apply command is also useful for defining callbacks for use in the trace command:
set vbl
"123abc"
trace add variable vbl write {apply {{v1 v2 op} {
upvar 1 $v1 v
puts "updated variable to \"$v\""
}}}
set vbl 123
set vbl abc
SEE ALSO
KEYWORDS
anonymous function, argument, lambda, procedure,
More Linux Commands
manpages/wmove.3ncurses.html
wmove(3ncurses) - move curses window cursor - Linux man page
wmove.3ncurses - These routines move the cursor associated with the window to line y and column x. This routine does not move the physical cursor of the termina
manpages/llseek.2.html
llseek(2) - reposition read/write file offset (Man Page)....
llseek.2 - The _llseek() function repositions the offset of the open file associated with the file descriptor fd to (offset_high<<32) | offset_low bytes relativ
manpages/getmaxx.3ncurses.html
getmaxx(3ncurses) - get curses cursor and window coordinates
The getbegy and getbegx functions return the same data as getbegyx. The getcury and getcurx functions return the same data as getyx. The getmaxy and getmaxx fun
manpages/SelectSaver.3pm.html
SelectSaver(3pm) - save and restore selected file handle....
A SelectSaver object contains a reference to the file handle that was selected when it was created. If its new method gets an extra parameter, then that paramet
manpages/ber_put_enum.3.html
ber_put_enum(3) - OpenLDAP LBER simplified Basic Encoding Ru
These routines provide a subroutine interface to a simplified implementation of the Basic Encoding Rules of ASN.1. The version of BER these routines support is
manpages/XkbKeyActionsPtr.3.html
XkbKeyActionsPtr(3) - Returns a pointer to the two-dimension
XkbKeyActionsPtr.3 - A key action defines the effect key presses and releases have on the internal state of the server. For example, the expected key action ass
manpages/mailq.1.html
mailq(1) - Postfix to Sendmail compatibility interface......
The Postfix sendmail(1) command implements the Postfix to Sendmail compatibility interface. For the sake of compatibility with existing applications, some Sendm
manpages/hciconfig.1.html
hciconfig(1) configure Bluetooth devices - Linux man page...
hciconfig.1 - hciconfig is used to configure Bluetooth devices. hciX is the name of a Bluetooth device installed in the system. If hciX is not given, hciconfig
manpages/freelocale.3.html
freelocale(3) create, modify, and free a locale object......
freelocale.3 - The newlocale() function creates a new locale object, or modifies an existing object, returning a reference to the new or modified object as the
manpages/tdbdump.8.html
tdbdump(8) - tool for printing the contents of a TDB file...
This tool is part of the samba(1) suite. tdbdump is a very simple utility that dumps the contents of a TDB (Trivial DataBase) file to standard output in a human
manpages/closedir.3.html
closedir(3) - close a directory (Library - Linux man page)
The closedir() function closes the directory stream associated with dirp. A successful call to closedir() also closes the underlying file descriptor associated
manpages/gnutls_x509_trust_list_add_named_crt.3.html
gnutls_x509_trust_list_add_named_crt(3) - API function......
This function will add the given certificate to the trusted list and associate it with a name. The certificate will not be be used for verification with gnutls_
