mirror of
https://github.com/osmarks/osmarkscalculator.git
synced 2025-07-01 01:23:10 +00:00
7 lines
167 B
Rust
7 lines
167 B
Rust
use inlinable_string::{InlinableString, StringExt};
|
|
|
|
pub fn char_to_string(c: char) -> InlinableString {
|
|
let mut s = InlinableString::new();
|
|
s.push(c);
|
|
s
|
|
} |