Tutorial by Topics: d

What is Boost? Boost is a large collection of free, high quality C++ libraries that cover a broad range of topics. It is often considered a "second standard library" for C++, since many common problems in C++ are solved by using Boost. From boost.org: Boost provides free peer-revi...
Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment. Everything in Mongoose starts with a Schema. Each schema maps to a MongoDB collection and defines the shape of the documents within that collection. Mongoose makes it painlessly easy to work with ...
Serde is a popular serialization and deserialization framework for Rust, used to convert serialized data (e.g. JSON and XML) to Rust structures and vice versa. Serde supports many formats, including: JSON, YAML, TOML, BSON, Pickle and XML.
IdentifierName [arguments] Call IdentifierName[(arguments)] [Let|Set] expression = IdentifierName[(arguments)] [Let|Set] IdentifierName[(arguments)] = expression ParameterInfoIdentifierNameThe name of the procedure to call.argumentsA comma-separated list of arguments to be passed to the p...
<element data-custom-name="somevalue"> ValueDescriptionsomevalueSpecifies the value of the attribute (as a string)
CAGradientLayer() // Returns an initialized CALayer object. CAGradientLayer(layer: layer) // Override to copy or initialize custom fields of the specified layer. ParameterDetailscolorAn array of CGColorRef objects defining the color of each gradient stop. Animatable.locationsAn optional ar...
Summary A delegate type is a type representing a particular method signature. An instance of this type refers to a particular method with a matching signature. Method parameters may have delegate types, and so this one method to be passed a reference to another method, which may then be invoked...
ABAP is a programming language developed by SAP for programming business applications in the SAP environment. Previously only procedural, ABAP is now also an object-oriented language thanks to the ABAP Objects enhancement. VersionRelease DateABAP 7.502015-10-20ABAP 7.402012-11-29ABAP 7.02006-...
ClojureScript is a version of Clojure that compiles to javascript code and runs in the browser. While it is mostly the same as Clojure, there are a few differences (mainly, it lacks some api calls that invoke java functions that are not available in javascript)
sails.js is an MVC (Model View Controller) web framework for node.js that emulates familiar MVC frameworks like Ruby on Rails. sails.js is based on Express and provides websocket support via socket.io. sails.js provides a set of conventions and default configurations to quickly get a new website ...
This section provides an overview of what github is, and why a developer might want to use it. It should also mention any large subjects within github, and link out to the related topics. Since the Documentation for github is new, you may need to create initial versions of those related topics. ...
str.encode(encoding, errors='strict') bytes.decode(encoding, errors='strict') open(filename, mode, encoding=None) ParameterDetailsencodingThe encoding to use, e.g. 'ascii', 'utf8', etc...errorsThe errors mode, e.g. 'replace' to replace bad characters with question marks, 'ignore' to ignore...
When using CBV we often need to know exactly what methods we can overwrite for each generic class. This page of the django documentation lists all the generic classes with all of their methods flattened and the class attributes we can use. In addition, Classy Class Based View website provides th...

Page 25 of 221