Files
Reflect/Shared/Stats.swift
2022-01-15 12:03:31 -06:00

18 lines
308 B
Swift

//
// Stats.swift
// Feels
//
// Created by Trey Tartt on 1/14/22.
//
import Foundation
class Stats {
static func getCountFor(moodType: Mood, inData data: [MoodEntry]) -> Int {
let num = data.filter({
$0.moodValue == moodType.rawValue
}).count
return num
}
}