flowstdlib 0.8.6

The native version of the standard library for 'flow' programs compiled with the 'flowc' compiler
Documentation
1
2
3
4
5
6
7
8
9
//! ## Fmt (//flowstdlib/fmt)
//! Functions for the formatting of values and conversion from one type to another.

/// A module to reverse a `String`
pub mod reverse;
/// A module to convert a `String` to a `Number`
pub mod to_number;
/// A module to convert a `Number` to a `String`
pub mod to_string;