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
mightBeString.String() will be replaced with a fmt.Sprintf("%v", mightBeString) for types that do not implement fmt.Stringer.
The functions that support this as tagged with an "S" in the Functions list. This means that Join could be used on all types and StringSliceType can be removed :)
The text was updated successfully, but these errors were encountered:
In a recent version, I introduced
fmt.Stringer
, see:https://github.com/elliotchance/pie/blob/master/functions/float64s.go#L19-L20
mightBeString.String()
will be replaced with afmt.Sprintf("%v", mightBeString)
for types that do not implementfmt.Stringer
.The functions that support this as tagged with an "S" in the Functions list. This means that
Join
could be used on all types andStringSliceType
can be removed :)The text was updated successfully, but these errors were encountered: