- Perl 6 Deep Dive
- Andrew Shitov
- 125字
- 2021-07-03 00:05:55
Working with Operators
Operators are the elements of the syntax of the language which perform actions over their operands and return a result. Perl 6 is a language with dozens of operators. Some of them are inherited from Perl 5 (directly or with modifications), some were invented especially for Perl 6. On top of the set of regular operators, Perl 6 defines the so-called meta-operators and hyper-operators, which extend the meaning of regular operators for working on a group of values.
In this chapter, we will cover the following topics:
- Operator classification
- Unary operators
- Binary operators
- Ternary operator
- Bitwise operators
- Miscellaneous operators
- Operator precedence
- Substitution meta-operators
- Assignment meta-operators
- Negation meta-operators
- Reversed meta-operators
- Creating hyper-operators
- Types of hyper-operations
- Reduction hyper-operators
- Cross hyper-operators
- Zip hyper-operator
- Sequential hyper-operators
推薦閱讀
- 演進式架構(原書第2版)
- C語言程序設計教程
- LaTeX Cookbook
- 從零開始:數字圖像處理的編程基礎與應用
- Node.js 10實戰
- Cross-platform Desktop Application Development:Electron,Node,NW.js,and React
- 架構不再難(全5冊)
- Unity 2020 Mobile Game Development
- Julia機器學習核心編程:人人可用的高性能科學計算
- Neo4j Essentials
- Learning Firefox OS Application Development
- Python程序設計案例教程
- Reactive Programming With Java 9
- CouchDB and PHP Web Development Beginner’s Guide
- WebRTC技術詳解:從0到1構建多人視頻會議系統