Skip to content

Instantly share code, notes, and snippets.

@christiancabarrocas
Created October 7, 2020 11:00
Show Gist options
  • Save christiancabarrocas/d0a1d63054a36ca7b786cf708a482cdd to your computer and use it in GitHub Desktop.
Save christiancabarrocas/d0a1d63054a36ca7b786cf708a482cdd to your computer and use it in GitHub Desktop.
extension Array {
public subscript(safeIndex index: Int) -> Element? {
guard index >= 0, index < endIndex else { return nil }
return self[index]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment