Blame view

HDFwear/Tools/Sequence+Extension.swift 3.7 KB
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  //
  //  Sequence.swift
  //  Twear
  //
  //  Created by yangbin on 2021/12/4.
  //
  
  import Foundation
  
  extension Sequence where Element: AdditiveArithmetic {
      /// Returns the total sum of all elements in the sequence
      func sum() -> Element { reduce(.zero, +) }
  }
  
  extension Collection where Element: BinaryInteger {
      /// Returns the average of all elements in the array
      func average() -> Element { isEmpty ? .zero : sum() / Element(count) }
      /// Returns the average of all elements in the array as Floating Point type
      func average<T: FloatingPoint>() -> T { isEmpty ? .zero : T(sum()) / T(count) }
  }
  
  extension Collection where Element: BinaryFloatingPoint {
      /// Returns the average of all elements in the array
      func average() -> Element { isEmpty ? .zero : Element(sum()) / Element(count) }
  }
  
  extension Sequence  {
      func sum<T: AdditiveArithmetic>(_ keyPath: KeyPath<Element, T>) -> T {
          reduce(.zero) { $0 + $1[keyPath: keyPath] }
      }
      
      func max<T: Comparable>(_ keyPath: KeyPath<Element, T>) -> Element? {
          self.max { $0[keyPath: keyPath] < $1[keyPath: keyPath] }
      }
      func min<T: Comparable>(_ keyPath: KeyPath<Element, T>) -> Element? {
           self.min { $0[keyPath: keyPath] < $1[keyPath: keyPath] }
       }
  
       func sorted<T: Comparable>(_ keyPath: KeyPath<Element, T>) -> [Self.Element] {
           self.sorted { $0[keyPath: keyPath] < $1[keyPath: keyPath] }
       }
  
       func count(_ where: (Element) -> Bool) -> Int {
           self.filter(`where`).count
       }
  
  }
  
  
  extension Collection {
      func average<I: BinaryInteger>(_ keyPath: KeyPath<Element, I>) -> I {
          sum(keyPath) / I(count)
      }
      func average<I: BinaryInteger, F: BinaryFloatingPoint>(_ keyPath: KeyPath<Element, I>) -> F {
          F(sum(keyPath)) / F(count)
      }
      func average<F: BinaryFloatingPoint>(_ keyPath: KeyPath<Element, F>) -> F {
          sum(keyPath) / F(count)
      }
      func average(_ keyPath: KeyPath<Element, Decimal>) -> Decimal {
          sum(keyPath) / Decimal(count)
      }
     
  }
  
  
  extension Array where Element: Hashable {
      var unique: [Element] {
          var uniq = Set<Element>()
          uniq.reserveCapacity(self.count)
          return self.filter { uniq.insert($0).inserted }
      }
  }
  
  //extension Character {
  //    var isSimpleEmoji: Bool {
  //        guard let firstScalar = unicodeScalars.first else {
  //            return false
  //        }
  //        if #available(iOS 10.2, *) {
  //            return firstScalar.properties.isEmoji && firstScalar.value > 0x238C
  //        } else {
  //            return false
  //            // Fallback on earlier versions
  //        }
  //    }
  //    var isCombinedIntoEmoji: Bool {
  //        if #available(iOS 10.2, *) {
  //            return unicodeScalars.count > 1 && unicodeScalars.first?.properties.isEmoji ?? false
  //        } else {
  //            return false
  //            // Fallback on earlier versions
  //        }
  ////        return
  //    }
  //
  //    var isEmoji: Bool { isSimpleEmoji || isCombinedIntoEmoji }
  //}
  //
  //extension String {
  //    var isSingleEmoji: Bool {
  //        return count == 1 && containsEmoji
  //    }
  //    var containsEmoji: Bool {//是否包含emoji
  //        return contains { $0.isEmoji }
  //    }
  //    var containsOnlyEmoji: Bool {//是否全是emoji
  //        return !isEmpty && !contains { !$0.isEmoji }
  //    }
  //    var emojiString: String {
  //        return emojis.map { String($0) }.reduce("", +)
  //    }
  //    var emojis: [Character] {
  //        return filter { $0.isEmoji }
  //    }
  //    var emojiScalars: [UnicodeScalar] {
  //        return filter { $0.isEmoji }.flatMap { $0.unicodeScalars }
  //    }
  //    func stringByRemovingEmoji() -> String {//删除字符串中的emoji
  //        return String(self.filter { !($0.isEmoji) })
  //    }
  //}