- 授权协议: MIT
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://chaow.codeplex.com/
软件介绍
Chaow Framework 是增强标准 .NET 框架的类结合,允许你编写简单而又强大的代码。
var matchQuery = new {
BirthDate = 1.January(2000), //Create date easily
Iam = Sex.Man,
LookingFor = Array.Enum<Sex>(), //Looking for Man, and Woman! (Expand enum)
AgeRange = 18.To(25) //Create number range
}可以进行函数式编程和动态编程
Func<int, int> fibo = null; fibo = x => fibo(x - 1) + fibo(x - 2); fibo = fibo.When(x => x <= 1, x => x); //Able to do pattern matching fibo = fibo.Memoize(); //Allow you to do memoization var result = fibo(38);
The Intersectional Internet
Safiya Umoja Noble、Brendesha M. Tynes / Peter Lang Publishing / 2016
From race, sex, class, and culture, the multidisciplinary field of Internet studies needs theoretical and methodological approaches that allow us to question the organization of social relations that ......一起来看看 《The Intersectional Internet》 这本书的介绍吧!
