Tcl Library Source Code

Documentation
Login


[ Main Table Of Contents | Table Of Contents | Keyword Index | Categories | Modules | Applications ]

NAME

lazyset - Lazy evaluation

Table Of Contents

SYNOPSIS

package require Tcl 8.5 9
package require lazyset ?1.1?

::lazyset::variable ?-array boolean? ?-appendArgs boolean? variableName commandPrefix

DESCRIPTION

The lazyset package provides a mechanism for deferring execution of code until a specific variable or any index of an array is referenced.

COMMANDS

EXAMPLES

::lazyset::variable page {apply {{name} {
	package require http
	set token [http::geturl http://www.tcl.tk/]
	set data [http::data $token]
	return $data
}}}

puts $page

::lazyset::variable -array true page {apply {{name index} {
	package require http
	set token [http::geturl $index]
	set data [http::data $token]
	return $data
}}}

puts $page(http://www.tcl.tk/)

::lazyset::variable -appendArgs false simple {
	return -level 0 42
}

puts $simple

AUTHORS

Roy Keene

Bugs, Ideas, Feedback

This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category utility of the Tcllib Trackers. Please also report any ideas for enhancements you may have for either package and/or documentation.

When proposing code changes, please provide unified diffs, i.e the output of diff -u.

Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.

CATEGORY

Utility

COPYRIGHT

Copyright © 2018 Roy Keene