Tutorial by Topics: in

In C++ Metaprogramming refers to the use of macros or templates to generate code at compile-time. In general, macros are frowned upon in this role and templates are preferred, although they are not as generic. Template metaprogramming often makes use of compile-time computations, whether via templ...
VBScript (VBS) is a Visual Basic-flavored scripting language for Internet Explorer and Windows. It can be used on the web in principle, like JavaScript, but does not have much support, so it's usually confined to standalone or server-side scripts in business environments that use Windows exclusive...
VersionRelease Date1.0.02016-04-14
INSERT INTO table_name (column1,column2,column3,...) VALUES (value1,value2,value3,...); INSERT INTO table_name (column1, column2...) SELECT value1, value2... from other_table
ParameterDetailsbillingAgreementAttributesConfiguration object to create the billing agreementbillingPlanBilling plan ID from the query stringbillingPlanAttribsConfiguration object to create the billing planbillingPlanUpdateAttributesConfiguration object for changing a billing plan to an active sta...
Not all elements of the XML input will end up as elements of the parsed tree. Currently, this module skips over any XML comments, processing instructions, and document type declarations in the input. Nevertheless, trees built using this module’s API rather than parsing from XML text can have comm...
read.csv(file, header = TRUE, sep = ",", quote = """, dec = ".", fill = TRUE, comment.char = "", ...) read.csv2(file, header = TRUE, sep = ";", quote = """, dec = ",", fill = TRUE, comment.char = "", ....
VersionRelease Date0.6.0-dev2017-06-010.5.02016-09-190.4.02015-10-080.3.02014-08-210.2.02013-11-170.1.02013-02-14
There are many situations where it is useful to return several values from a function: for example, if you want to input an item and return the price and number in stock, this functionality could be useful. There are many ways to do this in C++, and most involve the STL. However, if you wish to avoi...
Strings are objects that represent sequences of characters. The standard string class provides a simple, safe and versatile alternative to using explicit arrays of chars when dealing with text and other sequences of characters. The C++ string class is part of the std namespace and was standardized i...
Kotlin is a statically-typed object-oriented programming language developed by JetBrains primarily targeting the JVM. Kotlin is developed with the goals of being quick to compile, backwards-compatible, very type safe, and 100% interoperable with Java. Kotlin is also developed with the goal of prov...
std::shared_ptr<ClassType> variableName = std::make_shared<ClassType>(arg1, arg2, ...); std::shared_ptr<ClassType> variableName (new ClassType(arg1, arg2, ...)); std::unique_ptr<ClassType> variableName = std::make_unique<ClassType>(arg1, arg2, ...); // C++14 std::...
See also separate topic on Overload Resolution Ambiguities can occur when one type can be implicitly converted into more than one type and there is no matching function for that specific type. For example: void foo(double, double); void foo(long, long); //Call foo with 2 ints foo(1, 2);...
jQuery UI is a JavaScript UI library, built on top of jQuery, offering a set of user interface interactions, effects and widgets. VersionRelease Date1.7.02009-03-061.7.12009-03-191.7.22009-06-121.7.42010-05-041.8.02010-03-231.8.12010-05-041.8.22010-06-071.8.42010-08-101.8.52010-09-171.8.62010-...
On Mac and Linux, the meteor command line tool assumes that the ssh command line tool, used to make secure connections to other computers, is always present. On Windows, this tool needs to be installed. Below are listed two options for setting it up and using it.
Retrieves information about the current site. get_bloginfo( $show , $filter ) ParameterDetails$show(string) The site setting information to retrieve.$filter(string) The specification on whether to return a filtered value or not. $show ValuesDescriptionExample'name' (Default)Site title...
While most HTML tags are used to create elements, HTML also provides in-text formatting tags to apply specific text-related styles to portions of text. This topic includes examples of HTML text formatting such as highlighting, bolding, underlining, subscript, and stricken text. <abbr>Ab...

Page 9 of 207