1 # string.h |
1 # String |
2 |
2 |
3 UCX strings come in two variants: immutable (`cxstring`) and mutable (`cxmutstr`). |
3 UCX strings come in two variants: immutable (`cxstring`) and mutable (`cxmutstr`). |
4 The functions of UCX are designed to work with immutable strings by default but in situations where it is necessary, |
4 The functions of UCX are designed to work with immutable strings by default but in situations where it is necessary, |
5 the API also provides alternative functions that work directly with mutable strings. |
5 the API also provides alternative functions that work directly with mutable strings. |
6 Functions that change a string in-place are, of course, only accepting mutable strings. |
6 Functions that change a string in-place are, of course, only accepting mutable strings. |