Files
GitHawk/Pods/StyledTextKit/Source/CGSize+LRUCachable.swift
2018-06-02 23:14:11 -04:00

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
}
}