1
2
3
4
5
6
7
8
9
10
11
12
13
//! functions for formatting data
//! ## Fmt (//flowstdlib/fmt)
//! Functions for the formatting of values and conversion from one type to another.

/// A module to reverse a `String`
#[path = "reverse/reverse.rs"]
pub mod reverse;
/// A module to convert a `String` to its `Json` representation
#[path = "to_json/to_json.rs"]
pub mod to_json;
/// A module to convert a `Json` value to a `String`
#[path = "to_string/to_string.rs"]
pub mod to_string;