- Scala Programming Projects
- Mikael Valot Nicolas Jorand
- 178字
- 2021-07-23 16:25:10
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
class LazyDemo {
lazy val lazyVal = {
println("Evaluating lazyVal")
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
def lazyEvenPlusOne(xs: Vector[Int]): Vector[Int] =
xs.withFilter { x => println(s"filter $x"); x % 2 == 0 }
Any command-line input or output is written as follows:
$ mkdir css
$ cd css
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."
- Mastering Node.js(Second Edition)
- 重新定義Spring Cloud實戰
- 網絡故障現場處理實踐(第4版)
- 無人機通信
- 網絡安全技術與解決方案(修訂版)
- 數字調制解調技術的MATLAB與FPGA實現:Altera/Verilog版(第2版)
- 智慧光網絡:關鍵技術、應用實踐和未來演進
- 搶占下一個智能風口:移動物聯網
- 夢工廠之材質N次方:Maya材質手冊
- 異構蜂窩網絡關鍵理論與技術
- Professional Scala
- 黑客與反黑工具使用詳解
- 物聯網導論
- Hands-On Microservices:Monitoring and Testing
- Scala Programming Projects