1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-08 06:42:04 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonUI/Extension/CGSize+Hashable.swift

16 lines
239 B
Swift

//
// CGSize.swift
//
//
// Created by Jed Fox on 2022-12-20.
//
import CoreGraphics
extension CGSize: Hashable {
public func hash(into hasher: inout Hasher) {
hasher.combine(width)
hasher.combine(height)
}
}