ANTLR v4 is a powerful tool used for building new programming languages and processing/translating structured text or binary files. ANTLR uses a grammar you create to generate a parser which can build and traverse a parse tree (or abstract syntax tree, AST). The parser consists of output files in ...
A Servlet is a Java application programming interface (API) running on the server machine which can intercept requests made by the client and can generate/send a response accordingly. A well-known example is the HttpServlet which provides methods to hook on HTTP requests using the popular HTTP met...
Parameter NameDescriptionactivityItemsContains array of object to perform the activity. This array must not be nil and must contain at least one object.applicationActivitiesAn array of UIActivity objects representing the custom services that your application supports. This parameter can be nil.
...
This section provides an overview of what servicestack is, and why a developer might want to use it.
It should also mention any large subjects within servicestack, and link out to the related topics. Since the Documentation for servicestack is new, you may need to create initial versions of thos...
The pandas official documentation includes a page on IO Tools with a list of relevant functions to read and write to files, as well as some examples and common parameters.
The product flavors support the same properties as defaultConfig this is because defaultConfig actually belongs to the ProductFlavor class. This means you can provide the base configuration for all flavors in the defaultConfig {} block, and each flavor can override any of these default values, suc...
ParameterDetailsvalueThe value to convert fromtargetTypeThe type being converted toparameterOptional value to control how the conversion workscultureCultureInfo object - required if localisation needed
The Convert method converts the value from the source (usually the view model) to the target (...
Passing by reference: public void Double(ref int numberToDouble) { }
Introduction
Value types
Value types are the simpler of the two. Value types are often used to represent data itself. An integer, a Boolean or a point in 3D space are all examples of good value types.
Value types (s...
REST Service Endpoint URLs
The REST client access API was first introduced in SharePoint 2010, but was greatly expanded in SharePoint 2013. The REST API in SharePoint 2010 is accessed through the ListData web service at the /_vti_bin/ListData.svc url. SharePoint 2013 introduced the /_api/lists/...
One way binding from parent component to nested component: [propertyName]
One way binding from nested component to parent component: (propertyName)
Two-way binding (a.k.a banana box notation) : [(propertyName)]