Skip to content

Instantly share code, notes, and snippets.

@Gujci
Created June 14, 2016 10:31
Show Gist options
  • Save Gujci/b8dc5c5b177003b0a8d6958b46755a20 to your computer and use it in GitHub Desktop.
Save Gujci/b8dc5c5b177003b0a8d6958b46755a20 to your computer and use it in GitHub Desktop.
extension Range: IntegerLiteralConvertible {
public init(integerLiteral value: Int) {
self = (value as! Element).rangeValue
}
}
extension ForwardIndexType {
var rangeValue: Range<Self> {
return self...self
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment