Tutorial by Topics: o

scope(exit) - statements are called no matter how the current block was exited scope(success) - statements are called when the current block was exited normally scope(failure) - statements are called when the current block was exited through exception throwing Using scope guards makes co...
module my.package; import my.package; import my.package : function; import fancyName = mypackage; import my.package : fancyFunctionName = function; Modules automatically provide a namespace scope for their contents. Modules superficially resemble classes, but differ in that: There's ...
This article assumes knowledge of Defer Basics For ordinary error handling, read the topic on error handling
This section provides an overview of what ibm-mobilefirst is, and why a developer might want to use it. It should also mention any large subjects within ibm-mobilefirst, and link out to the related topics. Since the Documentation for ibm-mobilefirst is new, you may need to create initial version...
OpenMP (Open MultiProcessing) is a parallel programming model based on compiler directives which allows application developers to incrementally add parallelism to their application codes. OpenMP API specification for parallel programming provides an application programming interface (API) that su...
for i in iter; ...; end while cond; ...; end break continue @parallel (op) for i in iter; ...; end @parallel for i in iter; ...; end @goto label @label label Whenever it makes code shorter and easier to read, consider using higher-order functions, such as map or filter, instead of lo...
if cond; body; end if cond; body; else; body; end if cond; body; elseif cond; body; else; end if cond; body; elseif cond; body; end cond ? iftrue : iffalse cond && iftrue cond || iffalse ifelse(cond, iftrue, iffalse) All conditional operators and functions involve using boole...
In object-oriented programming, objects often depend on other objects in order to do things. Dependency Injection (DI) is giving an object the things that it depends on so that it doesn't have to worry about getting them itself. That is, the dependencies are injected into the object. This is most...
Never use DDL or DML against tables created by dbms_aqadm.create_queue_table. Only use dbms_aqadm and dbms_aq to work with these tables. Oracle may make several supporting tables, indexes, etc that you will not be aware of. Manually running DDL or DML against the table may lead you to a sce...
commonly used Public MethodUseSetTitle(String)Sets Title for the dialogSetIcon(Drawable)Set Icon for the alert dialogSetMessage(string)Set the message to display.SetNegativeButton(String, EventHandler)Set a listener to be invoked when the negative button of the dialog is pressed.SetPositiveButton(...
# Package a build directory pack [PATH] # Use a specific generator cpack -G [GENERATOR] [PATH] # Provide optional overrides cpack -G [GENERATOR] -C [CONFIGURATION] -P [PACKAGE NAME] -R [PACKAGE VERSION] -B [PACKAGE DIRECTORY] --vendor [PACKAGE VENDOR] CPack is an external tool allowing...
A Warning on Filename Encoding It should be worth mentioning that Filename Encoding is not only platform specific but also filesystem specific. It is never entirely safe to assume (but often usually is) that just because you can encode and write to a given filename, that when you later try t...
This section provides an overview of what command-line is, and why a developer might want to use it. It should also mention any large subjects within command-line, and link out to the related topics. Since the Documentation for command-line is new, you may need to create initial versions of thos...

Page 107 of 283