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
// SPDX-FileCopyrightText: Copyright (C) 2024 Roland Csaszar
// SPDX-License-Identifier: MPL-2.0
//
// Project: token-string
// File: lib.rs
// Date: 16.Nov.2024
// =============================================================================
//!
// This is needed for `cargo doc` to get the formatting right.
//! ---
//! The documentation of the string itself is at [`TokenString`].
//!
//! To concatenate strings there is a [`Builder`] and the convenience macro
//! [`crate::concat`].
// Exports.
pub use ;
pub use TkStrError;
pub use ;
// Internal use
pub use ;
pub use StringPtr;