✖️Character * Int
// 2022.02.15
extension String: Repeatable // 🅿️ Repeatable
"-" * 3 // "---"History
// ┌───────────────────────┐
// │ Character * Int │
// └───────────────────────┘
/// `"-" * 3 == "---"`
public func * (a: Character, n: Int) -> String {
return String(repeating: a, count: n)
}Last updated