mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-04-28 20:14:59 +08:00
18 lines
261 B
Swift
18 lines
261 B
Swift
//
|
|
// CGSize+LRUCachable.swift
|
|
// StyledTextKit
|
|
//
|
|
// Created by Ryan Nystrom on 12/14/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension CGSize: LRUCachable {
|
|
|
|
public var cachedSize: Int {
|
|
return 1
|
|
}
|
|
|
|
}
|