Last active
July 4, 2023 13:00
-
-
Save nubbel/d5a3639bea96ad568cf2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol ArrayRepresentable { | |
typealias ArrayType | |
func toArray() -> ArrayType[] | |
} | |
extension Range : ArrayRepresentable { | |
func toArray() -> T[] { | |
return T[](self) | |
} | |
} | |
(1..5).toArray() // => [1, 2, 3, 4] | |
(-2.0..2.0).toArray() // => [-2.0, -1.0, 0.0, 1.0] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func toArray<S : Sequence>(seq: S) -> Array<S.GeneratorType.Element> { | |
return Array<S.GeneratorType.Element>(seq) | |
} | |
toArray(1..5) // => [1, 2, 3, 4] | |
toArray(-2.0..2.0) // => [-2.0, -1.0, 0.0, 1.0] |
Seems like the syntax of swift has changed. For ArrayTypes now need to be surrounded by brackets so T [] -> [T]
. Can you update the gist to reflect that? It is now the second entry on google.
A rather simpler way would be to use a closure on the Range. But it will only work on Integer ranges.
let array = (1...4).map { $0 }
This works too (in Xcode 6.1) -
var z = [Int](1...10)
@andy318. Great stuff, thanks a lot! Works great.
What does this provide above Array(1...42)
?
Swift 3?
👍
@eonist
(1...40).map { String($0) }
Swift 3
Meta: I googled this again. And found my self asking the same question. :P
Thanks @RomanVolkov was just about to post that same thing.
I found this to be the best option in Swift 3:
Array(0...3) // [0,1,2,3]
Array(0..<3) // [0,1,2]
import Foundation
public extension Range where Bound: Strideable, Bound.Stride: SignedInteger {
/// Convert to an array.
func asArray() -> [Bound] {
Array(self)
}
}
public extension ClosedRange where Bound: Strideable, Bound.Stride: SignedInteger {
/// Convert to an array.
func asArray() -> [Bound] {
Array(self)
}
}
public extension Sequence {
/// Convert to an array.
func asArray() -> [Iterator.Element] {
Array(self)
}
}
(1 ..< 4).asArray() // [1, 2, 3]
(1 ... 4).asArray() // [1, 2, 3, 4]
zip([1, 2, 3], ["a", "b", "c"]).asArray() // [(1, "a"), (2, "b"), (3, "c")]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks great, but sadly gives a syntax error on line 4, 8 and 9. Is there anything else that might be missing?