logo
分类于: 其它 互联网

简介

Functional Programming in C++: How to improve your C++ programs using functional techniques

Functional Programming in C++: How to improve your C++ programs using functional techniques 0.0分

资源最后更新于 2020-10-28 12:16:47

作者:Ivan Cukic

出版社:Manning Publications

出版日期:2017-01

ISBN:9781617293818

文件格式: pdf

标签: C++ 计算机 Functional 函数式编程 Programming 游戏

简介· · · · · ·

Functional programming is becoming a required skill for all programmers, and for good reason. The functional style of programming lets you write more concise code which tends to have fewer bugs. It allows you to decompose your programs into smaller, highly reusable components, without putting conceptual limits on how the software should be modularized. FP makes software develop...

想要: 点击会收藏到你的 我的收藏,可以在这里查看

已收: 表示已经收藏

Tips: 注册一个用户 可以通过用户中心得到电子书更新的通知哦

目录

Table of Contents
1. Introduction to functional programming
2. Getting started with functional programming
3. Functional objects
4. Creating new functions from the old ones
5. Purity -- avoiding mutable state
6. Lazy evaluation
7. Ranges
8. Data structures
9. Pattern matching
10. Monads
11. Template meta-programming
12. Functional design for concurrent and distributed systems
13. Testing and debugging