blob: b76f157d4026680b434273a12bd0e85d00575749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! ref: composer/vendor/symfony/string/CodePointString.php
#[derive(Debug, Clone)]
pub struct CodePointString {
pub(crate) string: String,
}
impl CodePointString {
pub fn wordwrap(&self, _width: i64, _break: &str, _cut: bool) -> Self {
todo!()
}
pub fn to_byte_string(&self, _encoding: &str) -> String {
todo!()
}
}
|