Tutorial by Topics

git subtree add -P <prefix> <commit> git subtree add -P <prefix> <repository> <ref> git subtree pull -P <prefix> <repository> <ref> git subtree push -P <prefix> <repository> <ref> git subtree merge -P <prefix> <commit&g...
The List (linked list) shines in sequential access: accessing the first element prepending to the front of the list deleting from the front of the list On the other hand, it's not ideal for random access (ie. getting nth element) and traversation in reverse order, and you might have better...
aFunction(10)_ //Using '_' Tells the compiler that all the parameters in the rest of the parameter groups will be curried. nArityFunction.curried //Converts an n-arity Function to an equivalent curried version anotherFunction(x)(_: String)(z) // Currying an arbitrary parameter. It needs its type...
JavaScript, like any language, requires us to be judicious in the use of certain language features. Overuse of some features can decrease performance, while some techniques can be used to increase performance. Remember that premature optimization is the root of all evil. Write clear, correct c...
render_template(template_name_or_list, **context)
Scala goes to great lengths to treat methods and functions as syntactically identical. But under the hood, they are distinct concepts. A method is executable code, and has no value representation. A function is an actual object instance of type Function1 (or a similar type of another arity). It...
[DllImport("Example.dll")] static extern void SetText(string inString); [DllImport("Example.dll")] static extern void GetText(StringBuilder outString); [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] string text; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] ...
This section provides an overview of what domain-driven-design is, and why a developer might want to use it. It should also mention any large subjects within domain-driven-design, and link out to the related topics. Since the Documentation for domain-driven-design is new, you may need to create ...

Map

new Map([iterable]) map.set(key, value) map.get(key) map.size map.clear() map.delete(key) map.entries() map.keys() map.values() map.forEach(callback[, thisArg]) ParameterDetailsiterableAny iterable object (for example an array) containing [key, value] pairs.keyThe key of an element....
Swift 3.0 DispatchQueue.main // Get the main queue DispatchQueue(label: "my-serial-queue", attributes: [.serial, .qosBackground]) // Create your own private serial queue DispatchQueue.global(attributes: [.qosDefault]) // Access one of the global concurrent queues D...

Page 65 of 428