码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
[TypeScript] Define Custom Type Guard Functions in TypeScript
One aspect of control flow based type analysis is that the TypeScript compiler narrows the type of a variable within a type guard. This lesson explore ...
分类:其他好文   时间:2018-09-13 16:35:08    阅读次数:192
help-time
NAME time - This module provides various functions to manipulate time values. DESCRIPTION There are two standard representations of time. One is the n ...
分类:其他好文   时间:2018-09-13 14:00:48    阅读次数:169
[Javascript] Flattening nested arrays: a little exercise in functional refactoring
In this lesson we write an imperative function to flatten nested arrays, and then use the popular map, reduce, compose, and pipe functions to transfor ...
分类:编程语言   时间:2018-09-12 19:56:27    阅读次数:183
js代码放在head和body的区别(QRCode生成)
1.在head中时,所代表的functions只加载而不执行,执行是在某一事件触发后才开始。 2.在body中时,直接加载并执行 典型的区别: 如果有不在函数中的执行语句,比如变量初始化,如果在head中就不会执行。 举个栗子: 这段代码会生成一个二维码,二维码的跳转地址为text中超链接 a.js ...
分类:Web程序   时间:2018-09-12 13:56:01    阅读次数:140
less--入门
Less(Learner Style Sheets)是向后兼容css扩展语言。 变量(Variables) 编译后等同于: 混合(Mixins) 嵌套(Nesting) 适配屏幕(@supports、@media) 运算(Operations) 函数(Functions) Maps 作用域(Scop ...
分类:其他好文   时间:2018-09-10 22:24:41    阅读次数:346
laravel自定义公共函数
1、在app/Helpers/下新建一个文件functions.php,当然这个文件位置和名称你可以自己定义,创建一些函数用于全局调用: 2、在composer.json中的autoload下增加如下代码加载自动文件 3、执行composer命令让其自动加载: 如图: 加载成功后,我们就可以在任何地 ...
分类:其他好文   时间:2018-09-09 11:34:07    阅读次数:227
你可能不知道的一些Go Packages知识
关于GoPackage关于GoPackageGoPackages主要用来把相关的functions,variables,和constants组织到一起,这样你就可以很方便的迁移Packages和把它们用到自己的程序中。注意除了mainpackage,Gopackages不是自治程序,不能被编译成可执行文件。它们必须直接或者间接的被mainpackage调用才能使用。如果你直接执行一个没个packa
分类:其他好文   时间:2018-09-07 11:07:35    阅读次数:124
xgboost
xgboost 基本概念Given dataseta tree ensemble model uses K additive functions to predict the outputwhere, 是CART的集合优化目标其中,为正则项when train the model in additi... ...
分类:其他好文   时间:2018-09-03 02:23:53    阅读次数:178
More Effective C++: 05技术(25-28)
25:将constructor 和 non-member functions 虚化 所谓 virtual constructor是某种函数,视其输入可产生不同类型的对象。比如下面的代码: readComponent根据参数str,决定产生TextBlock或Graphic。由于它产生新的对象,所以行 ...
分类:编程语言   时间:2018-09-02 21:48:46    阅读次数:193
(转)AWK函数
http://wiki.jikexueyuan.com/project/awk/built-in-functions.html 内置函数 http://wiki.jikexueyuan.com/project/awk/user-defined-functions.html 用户自定义函数 AWK 为 ...
分类:其他好文   时间:2018-09-01 15:54:05    阅读次数:194
1849条   上一页 1 ... 35 36 37 38 39 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!