fudd 0.1.9

Fun with poker. Named after that most famous of rabbit hunters.
Documentation
1
2
3
4
5
6
7
8
pub mod random_ordering;
pub mod uci;

/// How to convert a String into a static str.
#[must_use]
pub fn str_from_string(value: String) -> &'static str {
    Box::leak(value.into_boxed_str())
}