Tutorial by Topics: a

Acceptable URI examples: "http://www.example.com/image.png" // from Web "file:///mnt/sdcard/image.png" // from SD card "file:///mnt/sdcard/video.mp4" // from SD card (video thumbnail) "content://media/external/images/media/13" // from content provider ...
public delegate TResult Func<in T, out TResult>(T arg) public delegate TResult Func<in T1, in T2, out TResult>(T1 arg1, T2 arg2) public delegate TResult Func<in T1, in T2, in T3, out TResult>(T1 arg1, T2 arg2, T3 arg3) public delegate TResult Func<in T1, in T2, in T3, in T4...
I18n.t("key") I18n.translate("key") # equivalent to I18n.t("key") I18n.t("key", count: 4) I18n.t("key", param1: "Something", param2: "Else") I18n.t("doesnt_exist", default: "key") # specify a default i...
MD5 and SHA1 are insecure and should be avoided. The examples exist for educational purposes and due to the fact that legacy software may still use these algorithms.
While some parts of the Qt framework are thread safe, much of it is not. The Qt C++ documentation provides a good overview of which classes are reentrant (can be used to instantiate objects in multiple threads). The following rules are the most widely sought: You cannot create or access a Qt GU...
new Intl.NumberFormat() new Intl.NumberFormat('en-US') new Intl.NumberFormat('en-GB',{timeZone: 'UTC'}) ParamaterDetailsweekday"narrow", "short", "long"era"narrow", "short", "long"year"numeric", "2-digit"month&...
=DATEDIF(start_date,end_date,unit) UnitReturns"Y"The number of complete years in the period"M"The number of complete months in the period"D"The number of days in the period"MD"The difference between the days in start_date and end_date. The months and ...
NUnit's Assert.That() form supports the use of constraints as its second parameter. All constraints provided out of the box by NUnit are available through the static classes Is, Has and Does. Constraints can be combined into fluent expressions using the built in methods And, Or and With. Expressio...
Selection sel = window.getSelection(); Selection sel = document.getSelection(); // equivalent to the above Range range = document.createRange(); range.setStart(startNode, startOffset); range.setEnd(endNode, endOffset); ParameterDetailsstartOffsetIf the node is a Text node, it is the numb...
This section provides an overview of what date is, and why a developer might want to use it. It should also mention any large subjects within date, and link out to the related topics. Since the Documentation for date is new, you may need to create initial versions of those related topics.
WooCommerce is an eCommerce plugin for the WordPress CMS. It is the most popular eCommerce software on the internet, used to power about 39% of all eCommerce websites at time of writing. It's greatest strength is it's ease of use for shop owners and high flexibility for developers allowing it to...

Page 76 of 320