Tutorial by Topics

[] [1, 2, 3, 4] [1, 2] ++ [3, 4] # -> [1,2,3,4] hd([1, 2, 3, 4]) # -> 1 tl([1, 2, 3, 4]) # -> [2,3,4] [head | tail] [1 | [2, 3, 4]] # -> [1,2,3,4] [1 | [2 | [3 | [4 | []]]]] -> [1,2,3,4] 'hello' = [?h, ?e, ?l, ?l, ?o] keyword_list = [a: 123, b: 456, c: 789] keyword_list[:...
fun Name(Params) = ... fun Name(Params) {...} fun Name(Params): Type {...} fun <Type Argument> Name(Params): Type {...} inline fun Name(Params): Type {...} { ArgName: ArgType -> ... } { ArgName -> ... } { ArgNames -> ... } { (ArgName: ArgType): Type -> ... } Paramet...
int main(int argc, char *argv[]) ParameterDetailsargcargument count - initialized to the number of space-separated arguments given to the program from the command-line as well as the program name itself.argvargument vector - initialized to an array of char-pointers (strings) containing the ...
ViewData and ViewBag are used to transfer data from controller to view. ViewData is nothing but a dictionary of objects and it is accessible by string as key. ViewBag is very similar to ViewData. ViewBag is a dynamic property. ViewBag is just a wrapper around the ViewData. TempData keeps data for...
Constructor functions are actually just regular functions, there's nothing special about them. It's only the new keyword which causes the special behavior shown in the examples above. Constructor functions can still be called like a regular function if desired, in which case you would need to bind...
Imagine you had a class with some pretty important variables and they were set (by other programmers from their code) to unacceptable values.Their code brought errors in your code. As a solution, In OOP, you allow the state of an object (stored in its variables) to be modified only through methods. ...
N-dimensional arrays or ndarrays are numpy's core object used for storing items of the same data type. They provide an efficient data structure that is superior to ordinary Python's arrays. Whenever possible express operations on data in terms of arrays and vector operations. Vector operation...
Assert.ArgumentCondition(bool condition, string argumentName, string message) Assert.ArgumentNotNull(object argument, string argumentName) Assert.ArgumentNotNull(object argument, Func<string> getArgumentName) Assert.ArgumentNotNullOrEmpty(ID argument, string argumentName) Assert.Argument...
ParameterDetailsDurationWhen passed, the effects of .hide(), .show() and .toggle() are animated; the element(s) will gradually fade in or out.
Violations of aliasing rules and of violating the effective type of an object are two different things and should not be confounded. Aliasing is the property of two pointers a and b that refer to the same object, that is that a == b. The effective type of a data object is used by C to de...
Sometime testing our JavaScript code becomes a tough task. Jasmine is a behavior-driven development framework for testing our JavaScript code. It does not depend on any other JavaScript frameworks. It does not require a DOM. And it has a clean syntax which makes you easily write the tests. You can...
This section provides an overview of what sparql is, and why a developer might want to use it. It should also mention any large subjects within sparql, and link out to the related topics. Since the Documentation for sparql is new, you may need to create initial versions of those related topics. ...

Page 52 of 428