Skip to content

Commit 8d5019e

Browse files
committed
added notes and removed float32 check
1 parent 3b03478 commit 8d5019e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ parse
22
=====
33

44
String conversion
5+
6+
```
7+
i := parse.String("123")
8+
log.Println("%T", i)
9+
// prints "int"
10+
```

parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var TryFuncs = []TryFunc{
99
TryInt64,
1010
TryUint32,
1111
TryUint64,
12-
TryFloat32,
12+
//TryFloat32,
1313
TryFloat64,
1414
TryBool,
1515
}

0 commit comments

Comments
 (0)