blob: 5468633cf782e4479e2a0a48a0b156293cffee06 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
* Unicode support in strings
* write a decent Dictionary
- write a String_hash template
- write a Pointer_hash template
* Array::slice() upper too
* fix ambiguous String constructor overloads, e.g.:
String( int ) and String( char ), use
class String {
explicit String(int);
}
* Automake, libtool
* version numbering for shared lib.
* LGPL?
* disable this auto conv: const pointer -> bool -> string
* Pointer_array
* PCursor -> Pointer_cursor / PointerCursor ?
* efficient copy cons for List
* extend Interval
* use template handle in handle.hh for strings?
* move towards gnu or STL?
parsestream.h
vector.h
* lgetopt: cmd -, or cmd --
|