- Scala Functional Programming Patterns
- Atul S. Khot
- 192字
- 2021-07-30 09:44:21
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
// Driver code public static void main(String[] args) { Driver c = new Driver(); SomeInterface c1 = c.create(10); // 2 SomeInterface c2 = c.create(20); // 3 c1.printMsg(); // prints 10 c2.printMsg(); // prints 20 }
Any command-line input or output is written as follows:
scala> def f(n: Int) = { | val k = (y: Int) => y < n // 1 | k | } f: (n: Int)Int => Boolean
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Java逍遙游記
- Visual C++程序設計教程
- Learning ROS for Robotics Programming(Second Edition)
- 移動UI設計(微課版)
- Learning Data Mining with Python
- Yocto for Raspberry Pi
- 算法訓練營:提高篇(全彩版)
- Learn React with TypeScript 3
- OpenCV 4計算機視覺項目實戰(原書第2版)
- 區塊鏈架構之美:從比特幣、以太坊、超級賬本看區塊鏈架構設計
- Web程序設計:ASP.NET(第2版)
- 分布式架構原理與實踐
- 深入分析GCC
- Java程序設計教程
- Python數據預處理技術與實踐