Tutorial by Topics: o

LineDescriptionshow();Shows the dialogsetContentView(R.layout.yourlayout);sets the ContentView of the dialog to your custom layout.dismiss()Closes the dialog The dialog in the first example(Dialog) does not need to call show() when it is created as it is handled in the constructor Alert...
This section provides an overview of what couchbase is, and why a developer might want to use it. It should also mention any large subjects within couchbase, and link out to the related topics. Since the Documentation for couchbase is new, you may need to create initial versions of those related...
pointer := &variable // get pointer from variable variable := *pointer // get variable from pointer *pointer = value // set value from variable through the pointer pointer := new(Struct) // get pointer of new struct
const IDENTIFIER: type = constexpr; static [mut] IDENTIFIER: type = expr; lazy_static! { static ref IDENTIFIER: type = expr; } const values are always inlined and have no address in memory. static values are never inlined and have one instance with a fixed address. static mut values a...
Google Analytics and the Google Analytics developer platform allows you to collect, configure, and analyze your data to reach the right audience. Libraries and SDKs for tracking Web Tracking (analytics.js): Measure user interaction with websites or web applications. Android: Measure user in...
funcname = function(paramA, paramB, ...) body; return exprlist end -- a simple function function funcname(paramA, paramB, ...) body; return exprlist end -- shorthand for above local funcname = function(paramA, paramB, ...) body; return exprlist end -- a lambda local funcname; funcname = functio...
home_url( $path, $scheme ); ParameterDetails$path(String,Optional) To adding more segment after the home url.$scheme(String,Optional) Scheme to give the home url context. Accepts 'http', 'https', 'relative', 'rest', or null.
Help text can be located before or after the function line, as long as there is not code between the function line and the start of the help text. Capitalization of the function name only bolds the name, and is not required. If a line is prepended with See also, any names on the line that mat...
The Purpose of Macros Macros are intended for generating code, transforming code and providing new notations. These new notations can be more suited to better express the program, for example by providing domain-level constructs or entire new embedded languages. Macros can make source code mor...
Model binding is the process of taking HTTP parameters, typically in the Query String of a GET request, or within POST body, and applying it into an object that can then be validated and consumed in an object-oriented manner without the need for Controller actions having intimate knowledge of how to...
(function name) ; retrieves the function object of that name #'name ; syntactic sugar for (function name) (symbol-function symbol) ; returns the function bound to symbol (funcall function args...) ; call function with args (apply function arglist) ; call function with arguments given in a list...
ParameterDetailsos.F_OKValue to pass as the mode parameter of access() to test the existence of path.os.R_OKValue to include in the mode parameter of access() to test the readability of path.os.W_OKValue to include in the mode parameter of access() to test the writability of path.os.X_OKValue to in...
Meta tags in HTML documents provide useful information about the document including a description, keywords, author, dates of modifications and around 90 other fields. This topic covers the usage and purpose of these tags. <meta name="metadata name" content="value"> ...
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a Compose file to configure your application’s services. Then, using a single command, you create and start all the services from your configuration. To learn more about all the features of Compos...

Page 29 of 283