Changes between Version 7 and Version 8 of ParrotDeprecationsFor3.0
- Timestamp:
- 11/22/10 17:15:16 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ParrotDeprecationsFor3.0
v7 v8 139 139 140 140 string_max_bytes and string_increment will be removed. 141 142 143 == Method lower in String PMC == 144 145 === Description === 146 147 The method lower in the String PMC has been removed. 148 149 === Rationale === 150 151 HLLs may need its own version with different name and semantic, having a generic one is confusing. For other usages string registers are more convenient. 152 153 === Replacement === 154 155 Use string registers and the downcase opcode. For HLLs, provide its own version in the HLL mapped String type.