This module is undocumented. This is a list of its definitions.
convertFormatArgumentToVector :: FormatArgument a => a -> Vector Dynamic
format :: FormatArgument a => String -> a -> String
format formatString arguments
Returns the format string where specific tags are replaced by argument values.
See the documentation of java.lang.String.format for details.
Examples:
format "%.3f" 1.2345678
1.235"
format "%d %s %f" (3, "Hello world!, 5.6)
"3 Hello world! 5.600000"