You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v2.0.0 Release (#6)
Public API syntax updated to use [generics syntax](https://go.dev/doc/tutorial/generics).
syntax example:
```go
intVal := cast.To[int]("8.31") // 8 (int)
intVal := cast.To[int]("Hi!") // 0 (int)
intVal, err := cast.ToE[int]("Hi!") // 0, unable to cast "Hi!" of type string to int (int, error)
```