-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
100 lines (70 loc) · 3.89 KB
/
ChangeLog
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
2020-04-08 Kirit Sælensminde <[email protected]>
Refactor the way equality and inequality members work to cut down on code duplication.
2020-01-29 Kirit Sælensminde <[email protected]>
`f5::cord::basic_string` instances can now be created using character literals of other Unicode encodings.
2019-10-26 Kirit Sælensminde <[email protected]>
Remove the `vstring` header.
2019-07-16 Kirit Sælensminde <[email protected]>
Fix a bug in the string slice operations that could cause undefined behaviour when used with `nullptr` buffers.
2019-03-01 Kirit Sælensminde <[email protected]>
Deprecated two argument `substr` as the second argument handling doesn't match `std::string::substr`.
2018-12-08 Kirit Sælensminde <[email protected]>
Add `ends_with` on the u8view and u8string.
2018-12-08 Kirit Sælensminde <[email protected]>
Add `const` iteration of `shared_buffer`.
2018-11-23 Kirit Sælensminde <[email protected]>
Support (explicit) conversions of the string types to `std::string_view`
2018-10-24 Kirit Sælensminde <[email protected]>
Add a new `f5::cord::string` type, immutable shared string.
2018-08-31 Kirit Sælensminde <[email protected]>
* Add a `starts_with` member to `u8view`.
* Add a missing comparison operator.
2018-08-16 Kirit Sælensminde <[email protected]>
Add a member to fetch the number of code points from `u8view`.
2018-08-12 Kirit Sælensminde <[email protected]>
Fix a bug in the printing of `u8view` to streams.
2018-05-30 Kirit Sælensminde <[email protected]>
Add more equality comparison for u8view.
2018-05-30 Kirit Sælensminde <[email protected]>
Add better members for initialising the `shared_buffer`.
2018-05-22 Kirit Sælensminde <[email protected]>
Add a `memory` method to the `u8view` so that the underlying memory buffer can be accessed.
2017-12-28 Kirit Sælensminde <[email protected]>
* Add `empty` to the `u8view` and buffers.
* Add ability to output `u8view` and move overloaded `operator <<`s to `std` namespace.
2017-12-24 Kirit Sælensminde <[email protected]>
Allow appending of a `u8view` to a `std::string`.
2017-12-19 Kirit Sælensminde <[email protected]>
`u8view`s can be concatenated to form `std::string`s.
2017-12-15 Kirit Sælensminde <[email protected]>
* `u8view` supports operator <.
* `lstring` now also has a string literal, `_l`.
2017-12-13 Kirit Sælensminde <[email protected]>
* Add `empty()` member to `lstirng`.
* The const shared string buffers need to be immutable.
2017-12-12 Kirit Sælensminde <[email protected]>
* `u8view` can be explicitly converted to a `std::string`.
* `u8view` is now comparable with `const char *`.
2017-07-25 Kirit Sælensminde <[email protected]>
Add string equality comparison and `substr` operations to `u8view`.
2017-07-25 Kirit Sælensminde <[email protected]>
Fill in more of the `lstring` comparison members.
2017-07-17 Kirit Sælensminde <[email protected]>
* Add shared buffers who can own strings (and other things).
* Rename `array_view` to `buffer` as it is not always immutable.
* Add `u8view` and UTF8 decode function.
2017-07-16 Kirit Sælensminde <[email protected]>
* Added an `array_view` with some `constexpr` support.
* Add a `_t` literal for creating `tstring` instances. This allows us to deprecate the `vstring` template.
2017-03-27 Kirit Sælensminde <[email protected]>
Added `iostream` output for `lstring`.
2017-01-01 Kirit Sælensminde <[email protected]>
Add in iterators for converting between some combinations of UTF encodings.
2016-10-15 Kirit Sælensminde <[email protected]>
Start to add support for Unicode with UTF-8 decoding.
2016-04-15 Kirit Sælensminde <[email protected]>
Add `operator !=` to `lstring`.
2016-04-14 Kirit Sælensminde <[email protected]>
Implement `constexpr` and `std::string` ordering for `lstring`.
2016-04-11 Kirit Sælensminde <[email protected]>
Initial basic compile time strings.