Changeset 362:5b585873fec2
- Timestamp:
- 04/04/09 15:14:54
(3 years ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
remove TANGOSVN for 0.99.8
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r356 |
r362 |
|
| 13 | 13 | } |
|---|
| 14 | 14 | } |
|---|
| 15 | | version(TANGOSVN){ |
|---|
| 16 | | import tango.io.device.Conduit; |
|---|
| 17 | | } else { |
|---|
| 18 | | import tango.io.Conduit; |
|---|
| 19 | | } |
|---|
| | 15 | import tango.io.device.Conduit; |
|---|
| 20 | 16 | |
|---|
| 21 | 17 | class InputStreamWrapper : tango.io.model.IConduit.InputStream { |
|---|
| r356 |
r362 |
|
| 59 | 59 | public override hash_t toHash(){ |
|---|
| 60 | 60 | return (typeid(T[])).getHash(&array); |
|---|
| | 61 | } |
|---|
| | 62 | static if( is( T == char[] )){ |
|---|
| | 63 | public override char[] toString(){ |
|---|
| | 64 | return array; |
|---|
| | 65 | } |
|---|
| 61 | 66 | } |
|---|
| 62 | 67 | } |
|---|
| … | … | |
| 483 | 488 | } |
|---|
| 484 | 489 | |
|---|
| 485 | | alias tango.text.convert.Utf.toString16 toString16; |
|---|
| 486 | | alias tango.text.convert.Utf.toString toString; |
|---|
| | 490 | //alias tango.text.convert.Utf.toString16 toString16; |
|---|
| | 491 | //alias tango.text.convert.Utf.toString toString; |
|---|
| 487 | 492 | |
|---|
| 488 | 493 | int getRelativeCodePointOffset( String str, int startIndex, int searchRelCp ){ |
|---|