Tutorial by Topics: m

The COBOL DIVIDE statement divides one numeric item into others setting data items to the quotient and, optionally, the remainder. ROUNDED phrase: Default is TRUNCATION if no rounded phrase specified. Default ROUNDED mode is NEAREST-TOWARD-ZERO (rounding down) unless other specified. So call...
The DISPLAY statement causes data to be transferred to hardware or software of the operating environment. DISPLAY comes in two forms, UPON device or for display of SCREEN data. Environment variables can also be set with DISPLAY UPON in some implementations of COBOL, along with other extensions f...
The EVALUATE statement is a multiple branch, multiple join, conditional test and selection structure.
The COBOL EXIT statement is a terminating flow control verb. EXIT comes is a few flavours: bare EXIT is a common end point for a series of procedures. EXIT PARAGRAPH, EXIT SECTION provides a means of exiting a structured procedure without executing any of the subsequent statements. EXIT FUNC...
transform="[functions]*" translate(x[,y]) rotate(θ[,x,y]) scale(x[,y]) skewX(θ) skewY(θ) matrix(a,b,c,d,e,f)
@enum EnumType val=1 val val :symbol It is sometimes useful to have enumerated types where each instance is of a different type (often a singleton immutable type); this can be important for type stability. Traits are typically implemented with this paradigm. However, this results in additi...
Using the publisher: producerTemplate.asyncSendBody("direct:myprocedure", massageBody); Using the "createProducer()" in ManagedCamel to create the producerTemplate.
Not all preprocessors support trigraph sequence processing. Some compilers give an extra option or switch for processing them. Others use a separate program to convert trigraphs. The GCC compiler does not recognize them unless you explicitly request it to do so (use -trigraphs to enable them; use...
What does 'const member functions' of a class really means. The simple definition seems to be that, a const member function cannot change the object. But what does 'can not change' really means here. It simply means that you cannot do an assignment for class data members. However, you can do othe...
PhantomJS is a headless Selenium WebDriver with JavaScript support. It is based on WebKit, making it behave similarly to Google Chrome or Safari. It is slightly faster than a regular WebDriver like ChromeDriver or FirefoxDriver in both startup time and performance. PhantomJS has many options an...

Page 101 of 161