We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b03478 commit 8d5019eCopy full SHA for 8d5019e
README.md
@@ -2,3 +2,9 @@ parse
2
=====
3
4
String conversion
5
+
6
+```
7
+i := parse.String("123")
8
+log.Println("%T", i)
9
+// prints "int"
10
parse.go
@@ -9,7 +9,7 @@ var TryFuncs = []TryFunc{
TryInt64,
TryUint32,
11
TryUint64,
12
- TryFloat32,
+ //TryFloat32,
13
TryFloat64,
14
TryBool,
15
}
0 commit comments