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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
use crate__ToTStrArgBinary;
use crate::;
use Identity;
/// Gets the length of the [`IsTStr`] argument in utf8
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::len`]
///
/// # Example
///
/// ```rust
/// use tstr::ts;
///
/// const _: () = assert!(tstr::len(ts!(4)) == 1);
///
/// const _: () = assert!(tstr::len(ts!("hello")) == 5);
///
/// const _: () = assert!(tstr::len(ts!(rustacean)) == 9);
///
/// ```
pub const
/// Converts an [`IsTStr`] to a `&'static str`
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::to_str`]
///
/// # Example
///
/// ```rust
/// use tstr::{TStr, ts};
///
/// let foo: TStr<_> = ts!(foo);
/// assert_eq!(tstr::to_str(foo), "foo");
///
/// const BAR_STR: &str = tstr::to_str(ts!("bar"));
/// assert_eq!(BAR_STR, "bar");
///
/// ```
///
pub const
/// Converts an [`IsTStr`] to an utf8-encoded `&'static [u8]`
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::to_bytes`]
///
/// # Example
///
/// ```rust
/// use tstr::{TStr, ts};
///
/// let foo: TStr<_> = ts!(foo);
/// assert_eq!(tstr::to_bytes(foo), "foo".as_bytes());
///
/// const BAR_STR: &[u8] = tstr::to_bytes(ts!("bar"));
/// assert_eq!(BAR_STR, "bar".as_bytes());
///
/// ```
///
pub const
/// Compares two [`IsTStr`]s for equality
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::tstr_eq`]
///
/// # Examples
///
/// ```rust
/// use tstr::ts;
///
/// const _: () = assert!( tstr::eq(ts!("foo"), ts!("foo")));
///
/// const _: () = assert!(!tstr::eq(ts!("foo"), ts!("bar")));
///
/// ```
///
pub const
/// Compares two [`IsTStr`]s for inequality
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::tstr_ne`]
///
/// # Examples
///
/// ```rust
/// use tstr::ts;
///
/// const _: () = assert!(!tstr::ne(ts!("foo"), ts!("foo")));
///
/// const _: () = assert!( tstr::ne(ts!("foo"), ts!("bar")));
///
/// ```
///
pub const
/// Compares two [`IsTStr`]s for ordering
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::tstr_cmp`]
///
/// # Examples
///
/// ```rust
/// use tstr::ts;
/// use core::cmp::Ordering;
///
/// assert_eq!(const { tstr::cmp(ts!("foo"), ts!("foo")) }, Ordering::Equal);
///
/// assert_eq!(const { tstr::cmp(ts!("foo"), ts!("bar")) }, Ordering::Greater);
///
/// assert_eq!(const { tstr::cmp(ts!("bar"), ts!("foo")) }, Ordering::Less);
///
/// ```
///
pub const
/// Compares two [`IsTStr`]s for equality,
/// returning a proof of the (in)equality of the arguments.
///
/// This is a non-associated function for `const` compatibility,
/// the (non-`const`) trait method equivalent of this is [`IsTStr::type_eq`]
///
/// # Example
///
/// ```rust
/// use tstr::{IsTStr, TStr, TS, ts};
/// use tstr::typewit::TypeCmp;
///
///
/// assert_eq!(is_right_guess(Guess(ts!(foo))), None);
/// assert_eq!(is_right_guess(Guess(ts!(bar))), None);
/// assert_eq!(is_right_guess(Guess(ts!(world))), None);
///
/// assert!(is_right_guess(Guess(ts!(hello))).is_some_and(|x| x.0 == "hello"));
///
/// #[derive(Debug, PartialEq, Eq)]
/// struct Guess<S: IsTStr>(S);
///
/// const fn is_right_guess<S: IsTStr>(guess: Guess<S>) -> Option<Guess<impl IsTStr>> {
/// match typecast_guess(guess) {
/// Ok(ret @ Guess::<TS!(hello)>{..}) => Some(ret),
/// Err(_) => None,
/// }
/// }
///
/// /// Coerces `Guess<A>` to `Guess<B>` if `A == B`, returns `Err(guess)` if `A != B`.
/// const fn typecast_guess<A, B>(guess: Guess<A>) -> Result<Guess<B>, Guess<A>>
/// where
/// A: IsTStr,
/// B: IsTStr,
/// {
/// tstr::typewit::type_fn!{
/// // type-level function from `S` to `Guess<S>`
/// struct GuessFn;
/// impl<S: IsTStr> S => Guess<S>
/// }
///
/// match tstr::type_eq(A::VAL, B::VAL) {
/// TypeCmp::Eq(te) => Ok(
/// // te is a `TypeEq<A, B>`, a value-level proof that both args are the same type.
/// te
/// .map(GuessFn) // : TypeEq<Guess<A>, Guess<B>>
/// .to_right(guess) // : Guess<B>
/// ),
/// TypeCmp::Ne(_) => Err(guess),
/// }
/// }
///
///
/// ```
///
pub const