码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
python Lambda, filter, reduce and map
1. lambdaThe lambda operator or lambda function is a way to create small anonymous functions ,i.e. functions without a name. 可以方便的创造一个函数。比如 def add(.....
分类:编程语言   时间:2014-09-02 14:09:04    阅读次数:182
JavaScript实现动画插件
在这之前,大家应该了解了缓动函数(Easing Functions)的概念:动画的每一帧需要计算一次元素样式,如果样式改变则需要重绘屏幕。细一点讲,当我们每调用一次计时器函数,需要通过向缓动函数传入一些动画上下文变量,从而获取到元素的某个样式在当前帧合理的值。我所了解的缓动函数实现方式有两种,一种是...
分类:编程语言   时间:2014-09-01 22:28:23    阅读次数:415
armstrong's programming erlang 2nd
Re: json handling map functions in erlang 17I have not read Joes final book on the matter (several drafts though) .. and I've told him, twice I think,...
分类:其他好文   时间:2014-09-01 19:26:03    阅读次数:258
UVA - 10870 Recurrences (矩阵快速幂)
Consider recurrent functions ofthe following form: f(n) = a1 f(n - 1) + a2 f(n - 2) + a3 f(n -3) + ... + ad f(n - d), for n > d. a1, a2, ..., ad - arbitrary constants. A famous example is the Fib...
分类:其他好文   时间:2014-09-01 17:46:43    阅读次数:157
Fusioncharts图表组件API参考方法(Functions)汇总篇(续)
[摘要]: chartType()FusionCharts的JavaScript类API提供了大量的功能。下面的列表显示在每个功能的详细信息: 一、FusionCharts的类 - 实例功能 1、configure(name:string , value:string) or configure(....
分类:Windows程序   时间:2014-09-01 13:48:23    阅读次数:415
libeXosip2(3-1) -- eXosip2 INVITE and Call Management
eXosip2 INVITE and Call Management SIP messages and call control API Functions int eXosip_call_set_reference (struct eXosip_t *excontext, int id, void...
分类:其他好文   时间:2014-08-29 20:00:48    阅读次数:607
libeXosip2(2-2) -- eXosip2 network API
eXosip2 network API General purpose API. Functions int eXosip_transport_set (osip_message_t *msg, const char *transport) int eXosip_guess_localip (str...
分类:Windows程序   时间:2014-08-29 19:48:38    阅读次数:257
jQuery Event add [ 源码分析 ]
/* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { add: function( elem, types, han...
分类:Web程序   时间:2014-08-28 16:19:39    阅读次数:214
lua学习之表达式
3.1 算术运算符 二元运算符:+-*/ ^ (加减乘除幂) 一元运算符:-(负值) 这些运算符的操作数都是实数。 3.2 关系运算符 = == ~= ==,~=如果两个值d类型不同,则不等 lua通过引用比较tables,userdata,functions,也就是当且仅当表示同一个对象时才相等。 3.3 逻辑运算符 and or not a and b -- ...
分类:其他好文   时间:2014-08-27 14:49:38    阅读次数:176
STL vector方法总结(一)Member functions(34)
这里是vector的所有构造方法,成员方法的一些总结,具体的可以详看后面的链接。 容器:Vector 原型: template > class vector;  描述:vector是一种顺序容器,其行为类似于大小可以改变的array数组。 跟array一样,vector使用连续的存储单元来存储里面的元素。这意味着vector可以使用正常的指针的偏移量来访问其元素。它跟array一样的高...
分类:其他好文   时间:2014-08-27 13:07:08    阅读次数:289
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!