提交 e5c9a8a4 编写于 作者: J Jesse Jones

Fixed lint problems

上级 a1bf7597
//! Support for fmt! expressions.
//!
//! The syntax is close to that of Posix format strings:
//!
//!
//! ~~~~~~
//! Format := '%' Parameter? Flag* Width? Precision? Type
//! Parameter := [0-9]+ '$'
......@@ -10,18 +10,24 @@
//! Precision := '.' [0-9]+
//! Type := [bcdfiostuxX?]
//! ~~~~~~
//!
//! * Parameter is the 1-based argument to apply the format to. Currently not implemented.
//! * Flag 0 causes leading zeros to be used for padding when converting numbers.
//! * Flag # causes the conversion to be done in an *alternative* manner. Currently not implemented.
//! * Flag + causes signed numbers to always be prepended with a sign character.
//!
//! * Parameter is the 1-based argument to apply the format to. Currently not
//! implemented.
//! * Flag 0 causes leading zeros to be used for padding when converting
//! numbers.
//! * Flag # causes the conversion to be done in an *alternative* manner.
//! Currently not implemented.
//! * Flag + causes signed numbers to always be prepended with a sign
//! character.
//! * Flag - left justifies the result
//! * Width specifies the minimum field width of the result. By default leading spaces are added.
//! * Precision specifies the minimum number of digits for integral types and the minimum number
//! * Width specifies the minimum field width of the result. By default
//! leading spaces are added.
//! * Precision specifies the minimum number of digits for integral types
//! and the minimum number
//! of decimal places for float.
//!
//!
//! The types currently supported are:
//!
//!
//! * b - bool
//! * c - char
//! * d - int
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册