Changeset 2730
- Timestamp:
- 10/28/07 21:09:35 (1 year ago)
- Files:
-
- trunk/tango/text/String.d (modified) (3 diffs)
- trunk/tango/text/Text.d (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/text/String.d
r2465 r2730 234 234 space 235 235 236 ***********************************************************************/ 237 238 this (uint space = 0) 236 deprecated: Use Text class instead 237 238 ***********************************************************************/ 239 240 deprecated this (uint space = 0) 239 241 { 240 242 content.length = space; … … 251 253 wrapping an array "temporarily" with a stack-based String 252 254 253 ***********************************************************************/ 254 255 this (T[] content, bool copy = true) 255 deprecated: Use Text class instead 256 257 ***********************************************************************/ 258 259 deprecated this (T[] content, bool copy = true) 256 260 { 257 261 set (content, copy); … … 268 272 temporarily with a stack-based String 269 273 270 ***********************************************************************/ 271 272 this (StringViewT other, bool copy = true) 274 deprecated: Use Text class instead 275 276 ***********************************************************************/ 277 278 deprecated this (StringViewT other, bool copy = true) 273 279 { 274 280 this (other.slice, copy);












