rfc:operator-overloading
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:operator-overloading [2016/01/03 01:50] – created pollita | rfc:operator-overloading [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== PHP RFC: Your Title Here ====== | + | ====== PHP RFC: Operator Overloading |
* Version: 0.1 | * Version: 0.1 | ||
* Date: 2016-01-02 | * Date: 2016-01-02 | ||
- | * Author: @pmtarantino, | + | * Author: |
* Status: Draft | * Status: Draft | ||
* First Published at: http:// | * First Published at: http:// | ||
Line 52: | Line 52: | ||
public function __mul($__value__); | public function __mul($__value__); | ||
public function __div($__value__); | public function __div($__value__); | ||
+ | public function __pow($__value__); | ||
+ | public function __concat($__value__); | ||
+ | |||
+ | ===== Opcache ===== | ||
+ | The implementation of this RFC would add new zend_function pointers to user-defined zend_class_entry structures which opcaches would need to set upon rematerializations. | ||
+ | |||
+ | ===== Proposed PHP Version(s) ===== | ||
+ | 7.1 | ||
+ | |||
+ | ===== Associativity ===== | ||
+ | When both operands to a binary expression implement operator overloading, | ||
+ | |||
+ | ===== Open questions for discussion ===== | ||
+ | Introduce interface(s) (a la ArrayAccess)? | ||
+ | |||
+ | ===== Proposed Voting Choices ===== | ||
+ | Implement user-space operator overloading as described. Requires 2/3 majority. | ||
+ | |||
+ | ===== Future Expansion ===== | ||
+ | Introduce dispatch for additional operations? | ||
+ | |||
public function __mod($__value__); | public function __mod($__value__); | ||
public function __sl($__value__); | public function __sl($__value__); | ||
public function __sr($__value__); | public function __sr($__value__); | ||
- | public function __concat($__value__); | ||
public function __or($__value__); | public function __or($__value__); | ||
public function __and($__value__); | public function __and($__value__); | ||
Line 76: | Line 96: | ||
public function __assign_concat($__value__); | public function __assign_concat($__value__); | ||
public function __assign_or($__value__); | public function __assign_or($__value__); | ||
- | public function __assign_and($__value__); | + | public function __assign_and($__value__); |
public function __assign_xor($__value__); | public function __assign_xor($__value__); | ||
+ | public function __assign_pos($__value__); | ||
public function __pre_inc(); | public function __pre_inc(); | ||
public function __pre_dec(); | public function __pre_dec(); | ||
Line 83: | Line 104: | ||
public function __post_dec(); | public function __post_dec(); | ||
- | ===== Proposed PHP Version(s) ===== | + | ==== Limiting Issue: Greater/ |
- | 7.1 | + | |
- | + | ||
- | ===== Opcache ===== | + | |
- | The implementation of this RFC would add new zend_function pointers to user-defined zend_class_entry structures which opcaches would need to set upon rematerializations. | + | |
- | + | ||
- | ===== Limiting Issue: Greater/ | + | |
Greater-than, | Greater-than, | ||
- | |||
- | ===== Associativity ===== | ||
- | When both operands to a binary expression implement operator overloading, | ||
- | |||
- | ===== Open questions for discussion ===== | ||
- | # Update the engine to disambiguate is greater from is lesser? | ||
- | # Introduce interface(s) (a la ArrayAccess) | ||
- | |||
- | ===== Proposed Voting Choices ===== | ||
- | Implement user-space operator overloading as described. Requires 2/3 majority. | ||
===== References ===== | ===== References ===== | ||
https:// | https:// | ||
rfc/operator-overloading.1451785815.txt.gz · Last modified: 2025/04/03 13:08 (external edit)