bitcoin-string 0.1.19

string utilities for the bitcoin system -- BilingualStr, strings representing money
1
2
3
4
5
6
7
8
9
10
// ---------------- [ File: bitcoin-string/src/traits.rs ]
crate::ix!();

pub trait ToUpper {
    fn to_upper(&self) -> Self;
}

pub trait ToLower {
    fn to_lower(&self) -> Self;
}