Skip to content

Instantly share code, notes, and snippets.

@foxicode
Last active July 29, 2023 13:07
Show Gist options
  • Select an option

  • Save foxicode/4a67ce93c2cdb5a16eafdda60dd3822d to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/4a67ce93c2cdb5a16eafdda60dd3822d to your computer and use it in GitHub Desktop.
Int asString/toString Swift extension
public extension Int {
var asString: String {
"\(self)"
}
func toString() -> String {
"\(self)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment