Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Programming Language : Tint Reference : Namespace Primitives : tint.list

Syntax

#(tint.list,%seperator,%match)
#(tint.list,%seperator,%match)
#(tint.list,%seperator,%match,%except)

%seperator is the value to place between the resulting names; it may be empty. %match is the value to match with; the names of any objects which have %match as their prefix will be returned. %except optionally specifies an object type; no objects with that type will be included in the result.

tint.list works as follows. The names of all objects which contain %match as their prefix will be returned. However, the names returned are relative to their parent. %except is used to weed the list as necessary. Order of the results is not significant.

Examples

#(tint.list, ,app)
app
#(tint.list, ,app.)
minor-version major-version filename environment directory arguments
#(tint.list, ,app.m)
minor-version major-version
#(tint.list, app.,app.m)
minor-version app.major-version
app.#(tint.list, app.,app.m)
app.minor-version app.major-version
#(tint.list, ,app.,string)
environment arguments